Can we include common css class in another css class?

前端 未结 3 1897
一个人的身影
一个人的身影 2020-12-14 14:36

I am a CSS newbie. I am just wondering, is that possible to include one common class into another class?

for example,

.center {align: center};
.conte         


        
3条回答
  •  盖世英雄少女心
    2020-12-14 15:05

    In standard CSS, it's not possible to do this, though it would be nice.

    For something like that you'd need to use SASS or similar, which "compiles" to CSS.

提交回复
热议问题