-
PostCSS插件postcss-nested-props用于处理嵌套属性
资源介绍
postcss嵌套道具
插件可解开。
嵌套属性
CSS具有“命名空间”中的许多属性; 例如, font-family , font-size和font-weight都在font名称空间中。 在CSS中,如果要在同一名称空间中设置一堆属性,则必须每次将其键入。 该插件提供了一个快捷方式:只需编写一次命名空间,然后将每个子属性嵌套在其中。 例如:
.funky {
font : {
family : fantasy;
size : 30 em ;
weight : bold ;
}
}
编译为:
.funky {
font-family : fantas