CSS中!important的作用
2018-06-27 09:08:47来源:未知 阅读 ()
提升指定样式规则的应用优先权。
-
IE6及以下浏览器有个比较显式的支持问题存在,!important在同一条规则集里不生效。请看下述代码:
示例代码:
div { color: #f00 !important; color: #000; }
在上述代码中,IE6及以下浏览器div的文本颜色为#000,!important并没有覆盖后面的规则;其它浏览器下div的文本颜色为#f00
-
IE6及以下浏览器要使!important生效,可用以下代码:
示例代码:
div { color: #f00 !important; } div { color: #000; }
在上述代码中,IE6及以下浏览器中div的文本颜色表现与其它浏览器一致,都为#f00
IE6及更早浏览器下,!important在同一条规则集内不生效。
示例:
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>important的使用</title> 5 <meta name="content-type" content="text/html; charset=UTF-8"> 6 <style> 7 .button { 8 position: relative; 9 background-color: #4CAF50; 10 border-radius:8px; 11 font-size: 28px; 12 color: #FFFFFF; 13 padding: 20px; 14 width: 200px; 15 text-align: center; 16 transition-duration: 1.5s; 17 overflow: hidden; 18 cursor: pointer; 19 } 20 .button:hover{ 21 box-shadow:0 4px 8px 0 rgba(0,0,0,0.1),0 6px 20px 0 rgba(0,0,0,0.299); 22 } 23 24 .button:after { 25 content: ""; 26 background: #90EE90; 27 display: block; 28 position: absolute; 29 padding-top: 300%; 30 padding-left: 350%; 31 margin-left: -20px!important; 32 margin-top: -120%; 33 opacity: 0; 34 transition:1s; 35 } 36 37 .button:active:after { 38 padding: 0; 39 margin: 0; 40 opacity: 1; 41 transition:0s; 42 } 43 </style> 44 </head> 45 <body> 46 47 <button class="button">Click Me</button> 48 <p>第31行的margin-left设置了!important,因此后面的第39行是不能更改margin-left的值。 50 </body> 51 </html>
参考文章:
http://www.runoob.com/css3/css3-buttons.html
http://www.css88.com/book/css/rules/!important.htm
本文为博主原创文章,若需转载请注明出处。
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- DIV居中的经典方法 2020-06-13
- CSS中的float和margin的混合使用 2020-06-11
- Html/css 列表项 区分列表首尾 2020-06-11
- css与javascript重难点,学前端,基础不好一切白费! 2020-06-11
- ie8下透明度处理 2020-06-11
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash