文字排版--颜色

来源:互联网 发布:拘捕令会网络公布吗 编辑:程序博客网 时间:2024/05/16 09:01

最高权值

<!DOCTYPE html><html><head><title>!important</title><style type="text/css">p{color: red;}.blue{color: blue;}</style></head><body><p>red</p><p class="blue">red</p></body></html>

两个red分别一红一绿

!important能使相应的css样式变成最高权值,



<!DOCTYPE html>
<html>
<head>
<title>!important</title>
<style type="text/css">
p{color: red!important;}
.blue{color: blue;}
</style>
</head>
<body>
<p>
red
</p>
<p class="blue">
red
</p>
</body>
</html>

两个red都变红

0 0
原创粉丝点击