Answer the question
In order to leave comments, you need to log in
How to sort CSS properties alphabetically in Notepad++?
Good afternoon!
Is there any plugin for Notepad++ that could alphabetize all CSS properties?
For example, there are ten properties for an element:
.score {
position: relative;
float: left;
margin: 13px 0;
vertical-align: middle;
background-color: #fff;
border-radius: 20px;
z-index: 10;
font-size: 12px;
text-align: center;
line-height: 14px;
}
.score {
background-color: #fff;
border-radius: 20px;
float: left;
font-size: 12px;
font-size: 16px;
line-height: 14px;
margin: 13px 0;
position: relative;
text-align: center;
vertical-align: middle;
z-index: 10;
}
Answer the question
In order to leave comments, you need to log in
In general, properties are sorted not alphabetically, but according to their purpose.
And to make everything according to Feng Shui, the scheme looks like this:
{
Positioning
Block parameters
Dimensions
Tables / lists
Text properties
Font
Color
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question