0

嗨,我遇到了以下代码:.height480{ min-height:484px; min-height:497px\9;}我以前从未见过反斜杠。我已经检查了 W3c 文档中的 min-height 并且没有提及它。有人知道吗?我注意到firefox忽略了它,所以猜它可能只是一个错字?干杯露水

4

1 回答 1

1

它是一个 IE 黑客

第一个min-height适用于其他浏览器,接下来min-height with slash适用于 IE7、IE8 和 IE9

看到这个网站

.header {width:300px;height:200px;background:#000;} /* Applies to all browsers */
*.header {width:310px;height:200px;background:#000;} /* Applies to all IE browsers */
_.header {width:290px;height:200px;background:#000;} /* Applies to all IE browsers 6 and below */
.header {width /*\**/:330px\9;height:200px;background:#000;} /* Applies to IE 8 */
(Note: IE 8 and IE9 are a diffent animals, it is tying to act like web-kit. A tip of the hat to Safari and Crome.)
于 2013-10-08T08:41:22.550 回答