zoukankan      html  css  js  c++  java
  • IE6/7 BUG 图片不能居中

    BUG描述

    正常浏览器设置line-height图片能居中显示 ,在IE6、7下不能居中显示

    BUG

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html lang="en">
    <meta name="robots" content="noindex">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Disappearing List Background Bug Demo - hasLayout.net by Zoffix Znet</title>
    
    <style type="text/css">
    
    body {
        background: #fff;
        color: #000;
    }
    
    div {
        width: 200px;
        height: 200px;
        line-height: 200px;
        text-align: center;
        background: #FF00FF;
    }
    img {
        vertical-align: middle;
    }
    </style>
    
    <div><img src="recent.jpg" alt="" width="100" height="100"></div>
    <!-- NOTE: no white-space in the <div> also triggers bug in IE7 -->

    图片不居中bug截图

    BUG解决

    在图片后加个<SPAN></SPAN>并添加其样式

    span {
    display: inline-block;
    }

  • 相关阅读:
    du熊学斐波那契I
    《博客园精华集》分类索引
    C++中指针和引用的区别
    堆和栈的区别
    getch和getchar的区别
    class和struct
    ARM开发步骤
    ARM寻址方式
    存储器映射
    思维中的错误
  • 原文地址:https://www.cnblogs.com/amws/p/3142255.html
Copyright © 2011-2022 走看看