Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!doctype html> <title>Example</title> <style> .grid { display: grid; height: 200px; grid-template-columns: repeat(3, 1fr); row-gap: 20px; } .grid > div { background-color: gold; border: 5px solid black; } </style> <div class="grid"> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> </div>