-
postcss-write-svg允许在CSS中直接编写SVG
资源介绍
写SVG
可让您直接在CSS中 。
/* before */
@svg square {
@rect {
fill : var ( --color , black);
width : var ( --size );
height : var ( --size );
}
}
. example {
background : svg (square param ( --color green) param ( --size 100 % )) center / cover;
}
/* after */
. example {
background : url ( "data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg'><rect fill='green' width='