<html>
<head>
<style>
#myDIV {
width: 300px;
height: 200px;
background-color: lightgreen;
border-inline-start-style: solid;
border-inline-start-width: 1px;
animation: mymove 5s infinite;
}
@keyframes mymove {
50% {border-inline-start-width: 25px;}
}
</style>
</head>
<body>
<h1>Animation of border-inline-start-width</h1>
<p>Gradually change the border-inline-start-width property from 1px to 25px, then back:<p>
<div id="myDIV"></div>
</body>
</html>