运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <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> </html>