-
在CSS中运用postcss-short-text进行简写文字属性设置
资源介绍
短文
是插件,可让您在CSS中使用速记text属性。
/* before */
section {
text : bold center uppercase dimgrey 1.25 em 1.5 .05 em ;
}
article {
text : 1.25 em * .05 em ;
}
/* after */
section {
font-weight : bold;
text-align : center;
text-transform : uppercase;
color : dimgrey;
font-size : 1.25 em ;
line-height : 1.5 ;
letter-spacing : .05 em ;
}
article {
font-size : 1.25 em ;