标签:语义 rgb 一点 分析 com tom 浮动 fixed log
当我学了矩阵分析的时候我知道什么是麻烦,当我学了傅里叶级数的时候我知道什么是相当麻烦。
然而,当我刚刚接触前端,我才明确什么叫做坑爹的ie6。这个分享对于经验丰富的前端基本都遇过。对于刚入行的新手,也许能够起到一点点的指导作用。
不求救万人于水火。但求某日能帮到路过的你。
在说bug之前,先看看各大浏览器近期的份额
有这个百度的浏览器份额能够看出ie6的末日渐行渐近了。
可是中国盗版的xp系统用户还不在少数,所以ie6在短期内不会消失。以下就说一下以ie6为首的一些奇葩而又常见的bug。
这个不用多说。入门和没入门的差别就在于有没有听说这个bug了。
解决方法:
加一句:display:inline;就ok.
出现的前提:
一个容器包括2两个具有“float”样式的子容器。
第二个容器的宽度大于父容器的宽度,或者父容器宽度减去第二个容器宽度的值小于3
在第二个容器前存在凝视(这也是为什么此bug也叫做“IE6凝视bug”的原因)。
解决方法:
1.去掉凝视。
2.讲--改成————
出现的前提:
有2个img或者同一时候用的时候,就会出现。
解决方法:
1.img加vertical-align:top;
2.设置图片的浮动属性。比如img加float:left;
解决方法:
/* 除IE6浏览器的通用方法 */ * html,* html body{background-image:url(about:blank);background-attachment:fixed}防抖动 .ie6fixedTL{position:fixed;left:0;top:0} .ie6fixedBR{position:fixed;right:0;bottom:0} .ie6fixed3 { /* IE6浏览器的特有方法 */ /* IE6浏览器的特有方法 */ * html .ie6fixedTL{position:absolute;left:expression(eval(document.documentElement.scrollLeft)); top:expression(eval(document.documentElement.scrollTop))} * html .ie6fixedBR{position:absolute;left:expression(eval(document.documentElement.scrollLeft+document.documentElement.clientWidth-this.offsetWidth)-(parseInt(this.currentStyle.marginLeft,10)||0)-(parseInt(this.currentStyle.marginRight,10)||0));top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)))}
<style type="text/css"> a:link {} a:visited {} a:hover {} a:active {} </style>
顺便把demo的网址发一下吧,请在对应的浏览器看,比如ie6.
链接:http://jsbin.com/hacadukurilo/1/edit
Author: Alone
Antroduction: 高级前端开发project师
Sign: 人生没有失败。仅仅有没到的成功。
博主相关文章推荐:
标签:语义 rgb 一点 分析 com tom 浮动 fixed log
原文地址:http://www.cnblogs.com/liguangsunls/p/6692784.html