最智能的SASS继承方式

时间:2017-01-13 14:14:42

标签: css sass

我想知道是否有比这个示例代码更好(更短)的继承方法?

span{
  background-color: black;
  color: white;
  opacity: 0.6;
  text-align: center;
  width: 100%;
}
.spanClass{
  @extend span;
  top: 10px;
}
.spanClass2{
  @extend span;
  bottom: 10px;  
}

0 个答案:

没有答案