Pattern: Malformed whitespace after !
of declaration
Issue: -
Require a single space or disallow whitespace after the bang of declarations.
There must always be a single space after the bang.
The following patterns are considered violations:
a { color: pink !important; }
a { color: pink !important; }
The following patterns are not considered violations:
a { color: pink ! important; }
a { color: pink! important; }
There must never be whitespace after the bang.
The following patterns are considered violations:
a { color: pink ! important; }
a { color: pink! important; }
The following patterns are not considered violations:
a { color: pink !important; }
a { color:pink!important; }