Once the animation is finished, it will not stop and return to its original state I want the width to stay at 46%
.option{
background: #c8d7f5;
margin-top: 3px;
border-radius: 3px;
padding: 5px;
transition:width .5s;
}
#o1{
animation: set 1s;
width:2%;
}
@keyframes set{
from{width:2%;}
to{width:46%;}
}
<div class='option' id='o1'>TEXT</div>