DEV Community

Discussion on: 10x CSS

Collapse
 
dairbuirabass profile image
Dair Baidauletov

I researched about the order of css properties long ago and this is what I stick to:

  • Layout Properties (position, float, clear, display)
  • Box Model Properties(width, height, margin, padding)
  • Visual Properties (color, background, border, box-shadow)
  • Typography Properties (font-size, font-family, text-align, text-transform)
  • Misc Properties (cursor, overflow, z-index)

Yours is a little bit different, but still the same idea to not add them randomly :)