kylertism

blurred on hover images / text

Aug 24th, 2025
4
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. <style>
  2.  
  3. #blurred {
  4. display: flex;
  5. justify-content: center;
  6. }
  7.  
  8. #blurred:hover {
  9. filter: blur(1px);
  10. transition: 0.5s;
  11. }
  12.  
  13. </style>
  14.  
  15. <div id="blurred"> yeah hi </div>
Advertisement
Add Comment
Please, Sign In to add comment