Guest User

Untitled

a guest
Dec 16th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. /**
  2. * "horizontal" list -first primitive :nth-child
  3. */
  4. body {
  5. background: #f06;
  6. background: linear-gradient(45deg, #f06, yellow);
  7. min-height: 100%;
  8. }
  9. ul.one,ul.two, ul.three {
  10. float: left;
  11. width:200px;
  12. display:inline-block;}
  13.  
  14.  
  15.  
  16.  
  17. ul li:nth-child(2),
  18. ul li:nth-child(3n),
  19. ul li:nth-child(5),
  20. ul li:nth-child(8)
  21.  
  22.  
  23. {
  24. display:none
  25. }
Add Comment
Please, Sign In to add comment