如何自动对现有CSS文件中的属性进行排序?有什么方法可以通过Excel或其他方式来做到这一点?我想为任何CSS文件声明我自己的属性顺序。是的,我知道它可能会破坏代码。
例如:
.selector {
/* Positioning */
position: absolute;
z-index: 10;
top: 0;
right: 0;
/* Display & Box Model */
display: inline-block;
overflow: hidden;
box-sizing: border-box;
width: 100px;
height: 100px;
padding: 10px;
border: 10px solid #333;
margin: 10px;
/* Color */
background: #000;
color: #fff
/* Text */
font-family: sans-serif;
font-size: 16px;
line-height: 1.4;
text-align: right;
/* Other */
cursor: pointer;
}
答案 0 :(得分:0)
尝试以下步骤,假设CSS文件很简单,并且没有像嵌套等更大的东西。