Gulp
在postcss
与cssnano
选择器旁边时组合相同的选择器,但不幸的是,当它不在它旁边时它不会组合选择器。
It works very well when selectors are next to it
.box {
color: blue;
}
.box {
font-weight: 700;
}
至
.box {
color: blue;
font-weight: 700;
}
不幸的是,当它不在下一个时,它就无法完成工作
.box {
color: blue;
}
.love{
color: red;
}
.box {
font-weight: 700;
}