如何配置 CSSTidy 用于对属性进行排序的顺序?
我想对 CSS 选择器(从外到内)使用盒子模型排序,但我尝试设置"sort_properties": "true"
但排序似乎没有发生。结果是:
#background {
position:absolute;
top:0;
width:100%;
height:100%
}
#background img {
width:100%;
height:100%;
top:10px;
min-width:1100px;
padding-top:95px;
position:absolute
}