Como diseñar una CSS
¿Como podemos organizar una css? Aquí tenemos una pequeña solución.
1) Indent descendant and related rules:
This allows you to easily recognize page structure within your CSS and how sections related to each other
#main {width: 530px;padding: 10px;float: left;}#main #nav{background: #fff;width:100%}#main #left-col {background: #efefef;margin: 8px 0;}






