Prettify Your CSS Code

Type or paste any unformatted CSS:


1
 
menu{color:red} navigation{background-color:#333 /* darkgrey */}

Indent Options:







Curly Brace Options:







Prettified CSS:


1
2
3
4
5
6
7
 
menu {
    color: red;
}
 
navigation {
    background-color: #333 /* darkgrey */;
}


on