notes/sandbox/diagonal/style.css
2023-04-22 00:41:54 -07:00

12 lines
203 B
CSS

.line {
height:10px;
width:0;
margin-top:100px;
background:red;
transform:rotate(-45deg);
transform-origin:left;
animation:grow 1s linear forwards;
}
@keyframes grow{
to {width:100px;}
}