senchalabs / cssbeautify

Reindent and reformat CSS

Home Page:http://www.senchalabs.org/cssbeautify/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add space before `!important`

LouCypher opened this issue · comments

Should add a space between rule and !important declaration.

STR

p{margin:1em!important}

Actual

p {
  margin: 1em!important;
}

Expected

p {
  margin: 1em !important;
}

yes!very!helpful

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