senchalabs / cssbeautify

Reindent and reformat CSS
http://www.senchalabs.org/cssbeautify/
Apache License 2.0
674 stars 133 forks source link

Add space before `!important` #30

Open LouCypher opened 10 years ago

LouCypher commented 10 years ago

Should add a space between rule and !important declaration.

STR

p{margin:1em!important}

Actual

p {
  margin: 1em!important;
}

Expected

p {
  margin: 1em !important;
}
tomByrer commented 10 years ago

yes!very!helpful

craiglondon commented 10 years ago

I prefer this syntax, but I think it's just a matter of preference.