CSS Hack是一种针对不同浏览器(如Internet Explorer、Firefox、Opera等)的CSS样式特殊写法,通过使用不同的CSS语法或者使用特定条件的判断语句,让CSS代码能够针对不同的浏览器进行差异化渲染,从而达到兼容的目的。
对于Internet Explorer 6、7、8,CSS Hack主要有以下几种写法:
条件注释法
<!--[if IE 6]>
<link rel="stylesheet" type="text/css" href="ie6.css">
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="ie7.css">
<![endif]-->
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="ie8.css">
<![endif]-->
在上面的代码中,通过条件注释法,针对不同的IE版本加载不同的CSS样式表文件。
属性选择器法
对于IE6,可以使用属性选择器法来写Hack,例如:
*+html .selector {color: red;} /* IE6 */
对于IE7,可以使用以下代码:
css*:first-child+html .selector {color: red;} /* IE7 */
对于IE8,可以使用以下代码:
css*+html .selector {color: red;} /* IE8 */
针对盒模型的Hack写法
针对IE6的盒模型Hack写法如下:文章来源:https://www.toymoban.com/news/detail-815766.html
.selector {width: 100px; padding: 0 10px; _width: 90px; _padding: 0;} /* IE6 */
针对IE7的盒模型Hack写法如下:文章来源地址https://www.toymoban.com/news/detail-815766.html
.selector {width: 100px; padding: 0 10px; zoom:1;} /* IE7 */
到了这里,关于CSS Hack是什么?ie6,7,8的hack分别是什么的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!