Advertisement
GIFCITY

pulsing border

Dec 30th, 2021 (edited)
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <style>
  2. #scrollbox {
  3. width: 300px;
  4. height: 300px;
  5. animation: borderPulse 5s infinite;
  6. border: 2px solid;
  7. overflow: auto;
  8. }
  9.  
  10. @keyframes borderPulse {
  11. 25%: {border-color: #f00;}
  12. 50% {border-color: #0f0;}
  13. 75% {border-color: #00f;}
  14. }
  15. </style>
  16. <div id="scrollbox">
  17. text
  18. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement