Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. /* equivalente ao li:nth-child(1) */
  2. ul li:first-child a {
  3. color:red;
  4. }
  5.  
  6. /* equivalente ao li:nth-child(2) */
  7. ul li:first-child + li a {
  8. color:blue;
  9. }
  10.  
  11. /* equivalente ao li:nth-child(3) */
  12. ul li:first-child + li + li a {
  13. color:green;
  14. }​
  15.  
  16. /* equivalente ao li:nth-child(4) */
  17. ul li:first-child + li + li + li a {
  18. color:yellow;
  19. }​
  20.  
  21. /* ... e por ai a fora ... */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement