<html>
<head>
<style>
#myDIV {
width: 300px;
height: 200px;
background-color: lightgreen;
border-block-start-style: solid;
border-block-start-width: 1px;
animation: mymove 5s infinite;
}
@keyframes mymove {
50% {border-block-start-width: 25px;}
}
</style>
</head>
<body>
<h1>Animation of border-block-start-width</h1>
<p>Gradually change the border-block-start-width property from 1px to 25px, then back:<p>
<div id="myDIV"></div>
</body>
<!-- Mirrored from www.w3schools.com/cssref/tryit.php?filename=trycss_anim_border-block-start-width by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 16:50:29 GMT -->
</html>