Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <div class="myDiv">
  2. <div class="subDiv">hover me</div>
  3. </div>
  4.  
  5. .myDiv{
  6. width: 200px;
  7. height: 20px;
  8. border: 5px solid rgba(255,166,9,0.1);
  9. }
  10.  
  11. .subDiv{
  12. text-decoration: underline;
  13. text-align: center;
  14. cursor: pointer;
  15. }
  16.  
  17. .subDiv:hover{
  18. color: #ffa609;
  19. transition: all 1s;
  20. }
  21.  
  22. .subDiv:hover.myDiv{
  23. border: 5px solid rgba(255,166,9,1);
  24. }
  25.  
  26. .subDiv:hover{
  27. color: #ffa609;
  28. transition: all 1s;
  29. }
  30.  
  31. .subDiv:hover.myDiv{
  32. border: 5px solid rgba(255,166,9,1);
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement