!important 可被firefox和ie7识别
* 可被ie6、ie7识别
_ 可被ie6识别
*+ 可被ie7识别
区别ie6与FF:
background:orange;*background:blue;
区别ie6与ie7:
background:green !important;background:blue;
区别ie7与FF:
background:orange; *background:green;
区别FF,ie7,ie6:
background:orange;*background:green !important;*background:blue;
ie7,ie8兼容:
<Meta http-equiv="X-UA-Compatible" content="IE=Emulateie7" />
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. 鼠标手势问题:firefox的cursor属性不支持hand,但是支持pointer,IE两个都支持;所以为了兼容都用pointer
5. firefox中设置HTML标签的Style属性时,所有位置、宽高和尺寸值必须后跟px,IE也支持此写法,因此统一加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. 消除ul、ol等列表的缩进时,样式应写成:List-style:none;margin:0px;padding:0px;其中margin属性对IE有效,padding属性对firefox有效
8. CSS控制透明:IE:filter:progID:DXImagetransform.Microsoft.Alpha(style=0,opacity=60); firefox:opacity: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双线凹凸边框:IE:border: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方法cursor:url()自定义光标样式文件和滚动条颜色风格;firefox对以上两者均不支持
12. IE有Select控件永远处于最上层的BUG,且所有CSS对Select控件都不起作用
13. IE支持Form中的Label标签,包括图片和文字内容;firefox不支持包含图片的Label,点击图片不能让标记 label for 的Radio或CheckBox产生效果
14. firefox中的TextArea不支持onScroll事件
15. firefox不支持display的inline和block
16. firefox对div设置margin-left,margin-right为auto时已经居中,IE中不行
17. firefox对Body设置text-align时,div需要设置margin: auto(主要是margin-left margin-right) 方可居中
18. 对超链接的CSS样式设置最好遵从这样的顺序:L-V-H-A。即
<style type="text/CSS">
<!--
a:link {}
a:visited {}
a:hover {}
a:active {}
-->
</style>
这样可以避免一些访问过后的超链接就不具备hover和active样式了
19. IE中设置长段落自动换行在CSS中设置word-wrap:break-word;firefox中使用Js插入 的方法来实现,具体代码如下:
<script type="text/JavaScript">
/* <![cdaTA[ */
function toBreakWord(el,intLen){
var obj=document.getElementByID(el);
var strContent=obj.INNERHTML;
var strTemp="";
while(strContent.length>intLen){
strTemp+=strContent.substr(0,intLen)+" ";
strContent=strContent.substr(intLen,strContent.length);
}
strTemp+=" "+strContent;
obj.INNERHTML=strTemp;
}
if(document.getElementByID && !document.all) toBreakWord("div_ID",37);
/* ]]> */
</script>
20. 在子容器加了浮动属性后,该容器将不能自动撑开
解决方法:在标签结束后下一个标签中加上一个清除浮动的CSS clear:both;
精彩内容,请点击下一页! 总结
以上是内存溢出为你收集整理的CSS中各个浏览器兼容的解决办法全部内容,希望文章能够帮你解决CSS中各个浏览器兼容的解决办法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)