2

I'm looking for a website, key-combination, or package which does this:

Is there an easy way to tidy up my css code, and put all the class properties together. I mean if I have code css like this:

body {
    padding-top: 50px;
    background-color: #499eb9;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

Is there a quick way to make it look like this:

body {
    padding-top: 50px;
    background-color: #499eb9;
    margin-bottom: 60px;
}

This of course is in much longer css code. I have searched on google, but couldn't work out how to word this.

Frenchiejnr
  • 326
  • 1
  • 2
  • 13

0 Answers0