Format CSS rules, declarations, at-rules, and nested blocks consistently.
CSS tokens are re-emitted with indentation around rules and declarations while comments, strings, and custom-property values remain opaque. Formatting changes layout without changing computed style.
body{margin:0;padding:0;}.container{max-width:1200px;margin:0 auto;}
body {
margin: 0;
padding: 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
Stylesheet reviews, design systems, and generated CSS debugging format rules.