CodeLab
Tutorials For Everyone
Run
<!DOCTYPE html> <html> <head> <style> #container { display: flex; justify-content: center; align-items: center; color: #fff; font-size: 20px; margin: auto; inline-size: 100px; height: 200px; background: #333; box-shadow: 0 0 10px 0 #aaa; animation: anim 5s infinite; } @keyframes anim { 50% {inline-size: 300px;} } </style> </head> <body> <h1>Animatable 'inline-size' Property</h1> <hr> <p>Experience the changing inline-size or width of the Container.</p> <div id="container">Container</div> </body> </html>