Advertisement
n3ito

[code] blur on hover image

May 21st, 2022
577
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. <style>
  2.  
  3. .hov {
  4. width: 300px;
  5. height: auto;
  6. border: 3px double #000;
  7.  
  8. }
  9.  
  10. .hov:hover {
  11. filter: blur(2px);
  12.  
  13.  
  14. }
  15.  
  16. </style>
  17.  
  18. <img class=hov src="imgurl"></a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement