Skip to content

Instantly share code, notes, and snippets.

@douglasmiranda
Created October 7, 2011 16:39
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save douglasmiranda/1270746 to your computer and use it in GitHub Desktop.
Save douglasmiranda/1270746 to your computer and use it in GitHub Desktop.
Aplicar css em elementos pares em ímpares.
/* Example */
/* Par */
ul li:nth-child(even){
background:#fff;
}
/* Ímpar */
ul li:nth-child(odd){
background:#000;
}
/*
NOTE: A contagem começa em 1, NÃO em 0.
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment