Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!doctype html> <title>Example</title> <style> .container { display: flex; flex-direction: column; align-items: flex-start; background: beige; height: 100vh; } .red { background: orangered; } .green { background: yellowgreen; } .blue { background: steelblue; } .container > div { font-size: 5vw; padding: .5em; color: white; } body { margin: 0; } </style> <div class="container"> <div class="red">1</div> <div class="green">2</div> <div class="blue">3</div> </div>