程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ie 8-css hack \9\0會影響ie8

ie 8-css hack \9\0會影響ie8

編輯:編程綜合問答
css hack \9\0會影響ie8

我測試過了,的確會影響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>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved