Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. #hover1{
  2. opacity: 0.0;
  3. -webkit-transition: all 500ms ease-in-out;
  4. -moz-transition: all 500ms ease-in-out;
  5. -ms-transition: all 500ms ease-in-out;
  6. -o-transition: all 500ms ease-in-out;
  7. transition: all 500ms ease-in-out;
  8. }
  9. #hover2:hover + #hover1{
  10. opacity: 1.0;
  11. background-color: aquamarine;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement