我通常使用IE条件并且每个都有一个样式表。这对我来说是一个更简洁的方法来做到这一点。但是由于某些限制,我必须在相同的样式表中破解ie6和7。
我知道它不会验证,但是你如何在相同的样式表中使用hack隔离ie6和ie7?
答案 0 :(得分:7)
特定于浏览器的CSS黑客综合列表
来源:http://paulirish.com/2009/browser-specific-css-hacks/
/***** 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 */
请确保检查其他解决方案,例如为此目的使用javascript库: 我推荐http://www.modernizr.com,这是上述黑客保罗爱尔兰名单的同一作者所支持的。使用Modernizr,你可以做一些像:
#menu{ .. }
.ie6 #menu{ .. }
.ie7 #menu{ .. }
而不是黑客攻击,更清晰的代码,更容易理解。
另外,我建议您查看http://www.quirksmode.org/,它有一个非常完整的支持浏览器功能和兼容性列表。
答案 1 :(得分:1)
您可以查看this enormous table
它表示您可以使用*color: green;
。