You've probably minified your code before. You may have also prettified it or even uglified it.
Now it's time to wankify your code.
Enough with the talk - he's an example…
Before:
.my-class {
display: block;
width: 300px;
height: 200px;
position: fixed;
top: 10px;
right: 10px;
bottom: 10px;
left: 10px;
padding: 20px;
margin: 10px;
background: #FFF;
font-family: Helvetica, Arial, sans-serif;
font-weight: bold;
font-size: 15px;
color: #000;
}
After:
.my-class {
background: #FFF;
bottom: 10px;
color: #000;
display: block;
font-family: Helvetica, Arial, sans-serif;
font-size: 15px;
font-weight: bold;
height: 200px;
left: 10px;
margin: 10px;
padding: 20px;
position: fixed;
right: 10px;
top: 10px;
width: 300px;
}