1.如何优化以下代码?
.box {
width: 100px;
height: 100px;
}
.redBox {
background-color: red;
}
.yellowBox {
background-color: yellow;
}
.blueBox {
background-color: blue;
}
您可以将这段代码优化为使用SCSS的嵌套规则来减少重复代码。以下是优化后的代码示例:
.box {
width: 100px;
height: 100px;
&.redBox {
background-color: red;
}
&.yellowBox {
background-color: yellow;
}
&.blueBox {
background-color: blue;
}
}