我測試過了,的確會影響ie8;
但是教程裡說\9\0不會影響;
http://jingyan.baidu.com/article/c45ad29cd41857051753e215.html
請往下翻看老版教程;
附上我的截圖:
css:background: blue;
background: red\0;
background: yellow\9\0;
ietester下:
虛擬機ie8下:
經過測試,發現問題出在你和你提供的鏈接使用了不同的CSS屬性,你測試的是background,你提供的鏈接測試的是color。
通過下面的頁面,可以發現,對於color,\9\0確實對IE8確實不起作用,但是對於background,它又是起作用的。
<html>
<head>
<style type="text/css">
.background {
background: orange;
background: red\9;
_background: blue;
*background: green;
background: yellow\9\0;
}
.color {
color: orange;
color: red\9;
_color: blue;
*color: green;
color: yellow\9\0;
}
</style>
</head>
<body>
<div class="background">
This is a test!
</div>
<div class="color">
This is a test!
</div>
</body>
</html>