日期:2014-05-17  浏览次数:20745 次

div/css的使用在浏览器中的兼容问题 你了解多少?

??? 1. CSS中几种浏览器对不同关键字的支持,可进行浏览器兼容性重复定义 !important 可被FireFoxIE7识别 * 可被IE6IE7识别 _ 可被IE6识别 *+ 可被IE7识别

  2. IE专用的条件注释 <!--其他浏览器 --> <link rel="stylesheet" type="text/css" href="css.css" /> <!--[if IE 7]> <!-- 适合于IE7 --> <link rel="stylesheet" type="text/css" href="ie7.css" /> <![endif]--> <!--[if lte IE 6]> <!-- 适合于IE6及一下 --> <link rel="stylesheet" type="text/css" href="ie.css" /> <![endif]-->

  3. 几个浏览器对实际像素的解释 IE/Opera:对象的实际宽度 = (margin-left) + width + (margin-right) Firefox/Mozilla:对象的实际宽度= (margin-left) + (border-left-width) + (padding- left) + width + (padding-right) + (border-right-width) + (margin-right)

  4. 鼠标手势问题:FireFoxcursor属性不支持hand,但是支持pointerIE两个都支持;所以为了兼容都用pointer

  5. FireFox中设置HTML标签的Style属性时,所有位置、宽高和尺寸值必须后跟pxIE也支持此写法,因此统一加px单位。如 Obj.Style.Height = imgObj.Style.Height + ‘px';

  6. FireFox无法解析简写的padding属性设置,如padding 5px 4px 3px 1px;必须改为 padding-top:5px; padding-right:4px; padding-bottom:3px; padding-left:1px0

  7. 消除ulol等列表的缩进时,样式应写成:list-style:none;margin:0px;padding:0px;其中margin属性对IE有效,padding属性对FireFox有效

  8. CSS控制透明:IEfilter:progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=60); FireFoxopacity:0.6;

  9. CSS控制圆角:IE:不支持圆角; FireFox: -moz-border-radius:4px; -moz-border-radius-topleft:4px; -moz-border-radius-topright:4px; -moz-border-radius-bottomleft:4px; -moz-border-radius- bottomright:4px;

  10. CSS双线凹凸边框:IEborder:2px outset; FireFox -moz-border-top-colors: #d4d0c8 white; -moz-border-left-colors: #d4d0c8 white; -moz-border-right-colors:#404040 #808080; -moz-border-bottom-colors:#404040 #808080;

  11. IE支持CSS