.round-borders { border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; } #menu { color: gray; .round-borders; }
.round-borders { border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; } #menu { color: gray; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; }
Mixin | 说明 |
Not Outputting the Mixin | 您只需将括号放在输出之后,即可使Mixin在输出中消失。 |
Selectors in Mixins | mixins可以包含属性以及选择器。 |
命名空间 | 命名空间用于按通用名称对混合包进行分组。 |
受保护的命名空间 | 如果对名称空间应用的防护条件返回true,则使用其定义的混合。 |
!important关键字 | !important关键字用于覆盖特定属性。 |
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="simple.css" type="text/css" /> <title>Less Mixin Example</title> </head> <body> <h1>Welcome to lidihuo</h1> <h3>MAIN BENEFITS YOU GET FROM OUR COMPANY :</h3> <p class="p1"> Life Time Validity.</p> <p class="p2">Training by Java Professionals.</p> <p class="p3">Small Batches to focus on each student.</p> </body> </html>
.p1{ color:brown; } .p2{ background : lightgreen; .p1(); } .p3{ background : lightgrey; .p1; }
.p1 { color: brown; } .p2 { background: lightgreen; color: brown; } .p3 { background: lightgrey; color: brown; }