Guest User

Untitled

a guest
Sep 18th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. :nth-child() odd/even pseudo classes with definition list
  2. <dl>
  3. <dt>green foo</dt>
  4. <dd>green bar</dd>
  5. <dt>red foo</dt>
  6. <dd>red bar</dd>
  7. <dt>green foo</dt>
  8. <dd>green bar</dd>
  9. </dl>
  10.  
  11. <style>
  12. dl { color: blue }
  13. dd:nth-child(odd) { color:green }
  14. dd:nth-child(even) { color:red }​
  15. </style>
  16.  
  17. dd:nth-of-type(even) {color: red;}
  18. dt:nth-of-type(even) {color: red;}
  19. dd:nth-of-type(odd) {color: green;}
  20. dt:nth-of-type(odd) {color: green;}
Add Comment
Please, Sign In to add comment