Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. div > div:nth-child(3n) + div:nth-last-child(1) {
  2. border-left: 5px solid black;
  3. border-right: 5px solid black;
  4. }
  5. div > div:nth-child(3n+1) + div:nth-last-child(1) {
  6. border-left: 5px solid black;
  7. }
  8. div > div:nth-child(3n+1) + div:nth-last-child(2) {
  9. border-left: 5px solid black;
  10. border-right: 5px solid black;
  11. }
  12.  
  13. div > div:nth-child(3n) + div:nth-last-child(1)
  14.  
  15. div > div:nth-child(3n) + div:nth-last-child(1)
  16.  
  17. div > div:nth-child(3n+1) + div:nth-last-child(2)
  18.  
  19. div > div:nth-child(3n+1):nth-last-child(2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement