1、为什么在IE6设置margin会出现距离加倍的状况
问题症结:在div中设置float属性后,IE6中margin距离加倍。
代 码:div{
float:left;
margin-left:5px; /*IE6浏览器解释成margin-left:10px;*/
}
解决方案:在div样式中设置display:inline;
2、怎么能让FF像IE6一样在固定了层的高度后能够根据文本的内容自动增加层的高度
问题症结:在IE6中设置div的高度后,当div中的内容超过层的高度,div会自动被文本撑开
代 码:div{
height:200px; /*FF不会根据内容自动增加高度,IE6中层的高度会自动增加*/
}
解决方案:
div{
height:auto!important;height:200px;min-height:200px;
}
3、IE中为什么图片下部会留有空隙
问题症结:IE中图片下部会留有一小部分空隙
解决方案:设置图片display:block;
4、CSS属性hack
解决方案:
{
padding:10px; /*所有浏览器*/
padding:10px/9; /*所有IE浏览器*/
padding:10px/0; /*IE8、IE9*/
*padding:10px; /*IE6、IE7*/
+padding:10px; /*IE7*/
_padding:10px; /*IE6*/
}
#example{} /*所有浏览器*/
* html #example{} /*IE6*/
*+html #example{} /*IE7*/
5、IE注释hack
<!--[if IE]-->only ie<![endif]-->
<!--[if !IE]-->not ie<![endif]-->
6、全面的CSS样式hack
- /***** Selector Hacks ******/
- /* IE6 and below */
- * html #uno { color: red }
- /* IE7 */
- *:first-child+html #dos { color: red }
- /* IE7, FF, Saf, Opera */
- html>body #tres { color: red }
- /* IE8, FF, Saf, Opera (Everything but IE 6,7) */
- html>/**/body #cuatro { color: red }
- /* Opera 9.27 and below, safari 2 */
- html:first-child #cinco { color: red }
- /* Safari 2-3 */
- html[xmlns*=""] body:last-child #seis { color: red }
- /* safari 3+, chrome 1+, opera9+, ff 3.5+ */
- body:nth-of-type(1) #siete { color: red }
- /* safari 3+, chrome 1+, opera9+, ff 3.5+ */
- body:first-of-type #ocho { color: red }
- /* saf3+, chrome1+ */
- @media screen and (-webkit-min-device-pixel-ratio:0) {
- #diez { color: red }
- }
- /* iPhone / mobile webkit */
- @media screen and (max-device-width: 480px) {
- #veintiseis { color: red }
- }
- /* Safari 2 - 3.1 */
- html[xmlns*=""]:root #trece { color: red }
- /* Safari 2 - 3.1, Opera 9.25 */
- *|html[xmlns*=""] #catorce { color: red }
- /* Everything but IE6-8 */
- :root *> #quince { color: red }
- /* IE7 */
- *+html #dieciocho { color: red }
- /* Firefox only. 1+ */
- #veinticuatro, x:-moz-any-link { color: red }
- /* Firefox 3.0+ */
- #veinticinco, x:-moz-any-link, x:default { color: red }
- /***** Attribute Hacks ******/
- /* IE6 */
- #once { _color: blue }
- /* IE6, IE7 */
- #doce { *color: blue; /* or #color: blue */ }
- /* Everything but IE6 */
- #diecisiete { color/**/: blue }
- /* IE6, IE7, IE8 */
- #diecinueve { color: blue/9; }
- /* IE7, IE8 */
- #veinte { color/*/**/: blue/9; }
- /* IE6, IE7 -- acts as an !important */
- #veintesiete { color: blue !ie; } /* string after ! can be anything */