ऐनिमेशन को रूपरेखा-ऑफसेट पर लागू करने के लिए CSS के साथ संपत्ति, आप निम्न कोड चलाने का प्रयास कर सकते हैं -
उदाहरण
<!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>