CSS IE7不能识别“ !important;”吗
发布网友
发布时间:2022-05-14 06:53
我来回答
共2个回答
热心网友
时间:2022-05-14 08:22
你写错了,应该这样写
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>无标题文档</title>
<style>
div{
background:blue; /*Firefox 背景变蓝色*/
background:red \9; /*IE8 背景变红色*/
*background:green; /*IE7 背景变黑色*/
_background:orange; /*IE6 背景变橘色*/
}
</style>
</head>
<body>
<div>hhhhhhhhhhhhhhhhhhhh</div>
</body>
</html>
注意:写hack时需要申明<!DOCTYPE html>,书写的顺序都是firefox的写在前面,IE7的写在中间,IE6的写在最后面。
热心网友
时间:2022-05-14 09:40
background:red !important; 要这么写,中间没有冒号隔开。追问中间不加“;”也是一样