Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!doctype html> <title>Example</title> <!doctype html> <title>Example</title> <style> .flexbox { display: flex; flex-wrap: wrap; width: 380px; row-gap: 20px; } .flexbox > div { background-color: limegreen; border: 5px solid black; flex: auto; width: 80px; height: 80px; } </style> <div class="flexbox"> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> </div>