kylertism

glow on hover images / text

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