Skip to content

Instantly share code, notes, and snippets.

@diestrin
Last active December 31, 2015 04:09
Show Gist options
  • Save diestrin/7932426 to your computer and use it in GitHub Desktop.
Save diestrin/7932426 to your computer and use it in GitHub Desktop.
// gente, reglas generales de escritura en los estilos, PORFA, siganlas
// ----
// entre selectores hermanos, una linea:
// bien:
.casa {
}
.casita {
}
// mal:
.casa {
}
.casita {
}
// ----
// entre el selector y la llave un espacio:
// bien:
.casa {
}
// mal:
.casa{
}
// ----
// sin espacios luego de las reglas:
// bien:
.casa {
color: red;
}
// mal:
.casa {
color: red;
}
// ----
// primero reglas y luego selectores:
// bien:
.casa {
color: red;
.casita {
}
.perro {
}
}
// mal:
.casa {
.casita {
}
color: red;
.perro {
}
}
// ----
// Al utilizar "em" agregar un comentario a su derecha sobre la conversión utilizada.
// bien:
.casa {
margin-left: 1em; // 16 / 16 = 1
}
// mal:
.casa {
margin-left: 1em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment