Guest User

Untitled

a guest
Mar 21st, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. #child2 {
  2. float: left;
  3. margin: 0 -120px 0 150px;
  4. }
  5.  
  6. #child2 {
  7. order: -1;
  8. margin: 0 -120px 0 150px;
  9. }
  10.  
  11. <div id="child2"></div>
  12. <div id="child1"></div>
  13.  
  14. #parent>div:first-child+div
  15.  
  16. #parent>div:first-child+div {
  17. margin-right: 20px;
  18. margin-left: 80px;
  19. }
  20.  
  21. #child2:hover+div {
  22. background: brown;
  23. }
  24.  
  25. #parent > div:first-child:nth-last-child(2) {
  26. margin-left:60px;
  27. margin-right:20px;
  28. }
Add Comment
Please, Sign In to add comment