senchalabs / cssbeautify

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

CSS Rule beginning with attribute selector starts on wrong line. #16

Closed Daniel-Hug closed 11 years ago

Daniel-Hug commented 11 years ago

With this input:

html{height:100%} [type="search"]{-webkit-appearance:none}

...we get this output:

html {
    height: 100%;
} [type="search"] {
    -webkit-appearance: none;
}