摘要: 以: " #demo {width:100px;} "为例;  #demo {width:100px;} /*被FIREFOX,IE6,IE7执行.*/  * html #demo {width:120px;} /*会被IE6执行,之前的定义会被后来的覆盖,所以#demo的宽度在IE6就为120px; */  *+html #demo {width:130px;} /*会被IE7执行*/  ---------------  所以最后,#demo的宽度在三个浏览器的解释为:  FIREFOX:100px;  ie6:120px;  ie7:130px;  IE8 最新css hack:  "\9 阅读全文
posted @ 2011-01-12 09:40 weballan 阅读(175) 评论(0) 推荐(0)
摘要: 在使用 CSS 实现表现的时候,会经常接触到 display:inline-block 这一属性,无论是初接触 Web 标准还是接触标准已久的朋友,大都会对这一属性感觉很迷惑和模糊。 阅读全文
posted @ 2011-01-12 09:37 weballan 阅读(251) 评论(0) 推荐(0)