|
It takes multi-line or chaotic CSS declarations and puts them all on 1 single line, or in the standard expanded view.
Style like:
#softpedia_id {
color: blue;
background: #161616;
} .softpedia_class { border: none; }
and turns it into:
#softpedia_id { color: blue; background: #161616; }
.softpedia_class { border: none; }
or a more expanded version:
#softpedia_id {
color: blue;
background: #161616;
}
.softpedia_class {
border: none;
}
Via: StyleTidy
0 Comment:
Post a Comment