我使用https://cssminifier.com/缩小了一个css文件,但是当我想将minify
结果复制到visual studio 2017
时,它不是minify
,它与befor相同。
有很多spaces
,new lines
和....
但是当我尝试使用Visual Studio 2015时,它还可以,并且工作正常。
有什么特别的设置吗?
代码示例是:
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
z-index: 100
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite
}