-
PostCSS插件postcss-selector-not用于进行转换
资源介绍
postcss-selector-not
PostCSS插件,将:not() W3C CSS 4级伪类转换为:not()CSS 3级选择器
安装
$ npm install postcss postcss-selector-not
用法
使用此input.css :
p : not ( : first-child , . special ) {
color : red;
}
你会得到:
p : not ( : first-child ) : not (. special ) {
color : red;
}