!important 关键字用于覆盖特定属性。 当它在mixin调用之后放置时,它会将所有继承的属性标记为!important 。
以下示例演示如何在LESS文件中使用!important关键字:
<html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> <title>The !important keyword</title> </head> <body> <h1>Welcome to Tutorialspoint</h1> <p class="para1">LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p> <p class="para2">LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p> </body> </html>
接下来,创建文件 style.less 。
.mixin(){ color: #900; background: #F7BE81; } .para1{ .mixin(); } .para2{ .mixin() !important; }
您可以使用以下命令将 style.less 编译为 style.css :
lessc style.less style.css
接下来执行上面的命令,它将用下面的代码自动创建 style.css 文件:
.para1 { color: #900; background: #F7BE81; } .para2 { color: #900 !important; background: #F7BE81 !important; }
让我们执行以下步骤,看看上面的代码如何工作:
将以上html代码保存在 less_mixin_important.html 文件中。
在浏览器中打开此HTML文件,将显示如下输出。
描述它增加了元素中颜色的亮度。 它有以下参数: color :它代表颜色对象。amount :它包含0-100%之间的百分比。 方法:它是可选...
CSS 分页实例.article-body ul li { background-image:none}.pagination,.pagination2,.pagination3 {display: inline-block;pad...
CSS3 渐变(Gradients) CSS3 渐变(gradients)可以让您在两个或多个指定的颜色之间显示平稳的过渡。 以前,您必须使用图像来实...
!DOCTYPE htmlhtml lang=zh-cnheadmeta charset=utf-8 /titlebox-reflect_CSS3参考手册/titlestylehtml,body{margin:50px 0;}.re...
响应式 Web 设计 - 视频(Video)使用 width 属性 如果 width 属性设置为 100%,视频播放器会根据屏幕大小自动调整比例: 实例vide...