我正在尝试使用 less 创建简单的“模板”,但我想我可能做错了..
这就是我想要的:
<div class='box'>content</div>
和 .less 文件:
//this is the mixin
.blueBoxNotificationDiv {
text-decoration: none !important;
position: absolute;
background: #EBEBEB;
width: 100%;
border-top: 1px solid #999;
bottom: 0;
height: 21px;
}
现在假设我想将此“mixin”应用于 div '.box'。这就是我将它写在.less中的方式:
.box {
.blueBoxNotificationDiv;
}
解决这个问题的正确方法是什么?