Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>Example</title> <style> .outer-container { height: 200px; display: flex; } .box { padding: 10px; font: 16px sans-serif; background: gold; color: white; flex: 1; } .animated { background: yellowgreen; animation: myAnimation 1s ease 1s 5 alternate forwards; } @keyframes myAnimation { 100% { flex: 5; } } </style> <div class="outer-container"> <div class="box animated">Animated Box</div> <div class="box">Box</div> </div>