Animate CSS outline-offset property


To implement animation on outline-offset property with CSS, you can try to run the following code −

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 350px;
            height: 150px;
            outline: 2px solid blue;
            animation: myanim 3s infinite;
         }
         @keyframes myanim {
            50% {
              outline-offset: 50px;
            }
         }
      </style>
   </head>
   <body>
      <h1>CSS outline-offset property</h1>
      <div> </div>
   </body>
</html>

Updated on: 12-Jun-2020

254 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements