CSS Formatter
Input CSS
  • Format
  • Number of spaces
Formatted CSS 

Online Free CSS Formatter / Prettier

  • Formates the CSS to easy-to-read form.
  • Can change the number of spaces of indentation.
  • Minifies as you type.
  • Minifies on paste.

Sample

@media (max-width:350px){.bd-examples{margin-left:-.50rem;margin-right:-.50rem}.bd-examples>[class^="col-"]{padding-right:.50rem;padding-left:.50rem}}

Converts to:

@media (max-width:350px) {
 .bd-examples {
  margin-left: -.50rem;
  margin-right: -.50rem
 }

 .bd-examples>[class^="col-"] {
  padding-right: .50rem;
  padding-left: .50rem
 }
}