Advertisement
loveberry

colour change on hover

May 20th, 2023 (edited)
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <style>
  2. .colchange, .colchange a {
  3. transition: .2s ease;
  4. color:black;
  5. font-size:2em;
  6. }
  7. .colchange:hover, .colchange a:hover {
  8. color:hotpink;
  9. }
  10. </style>
  11.  
  12. <div class="colchange">col change on hover</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement