CSS min-height属性中的反斜杠

时间:2013-10-08 08:40:10

标签: css css3

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

1 个答案:

答案 0 :(得分:1)

它是一个IE浏览器

其他浏览器和下一个min-height的第一个min-height with slash工作适用于IE7,IE8和IE9

see this site

.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.)