您的位置:首页 > 其它

less-Namespaces and Accessors(名称空间和访问器)

2017-06-17 19:17 281 查看
组织mixin,提供封装,重用或分发

编辑less:

#bundle {
.button {
display: block;
border: 1px solid black;
background-color: grey;
&:hover {
background-color: white
}
}
.tab { ... }     //可以写多个属性,使用时#bundle > .tab;
.citation { ... }   //可以写多个属性,使用时#bundle > .citation;
}

#header a {
color: orange;
#bundle > .button;  //取出bundle中的button
}


生成css:

#bundle .button {
display: block;
border: 1px solid black;
background-color: grey;
}
#bundle .button:hover {
background-color: white;
}
#header a {
color: orange;
display: block;
border: 1px solid black;
background-color: grey;
}
#header a:hover {
background-color: white;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息