I can see that sorting style rules is possible but what about sorting the properties inside a block, particularly a lengthy one. I know, it may break the priority of properties inside the block but this can be prevented by a user warning same as the existing sorting option.
e.g. from this:
Code:
img {
width: 20%;
max-width: 30%;
padding-top: 40px;
max-height: 30%;
}
to this:
Code:
img {
max-height: 30%;
max-width: 30%;
padding-top: 40px;
width: 20%;
}
Thanks!
Rustam