Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<!DOCTYPE html> <html> <head> <style> body { font-family: Arial; padding: 20px; } .grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; } .item { background: #6366f1; color: white; padding: 24px; border-radius: 8px; text-align: center; } .item:nth-child(2) { background: #10b981; } .item:nth-child(3) { background: #f59e0b; } .item:nth-child(4) { background: #ec4899; } .item:nth-child(5) { background: #8b5cf6; } .item:nth-child(6) { background: #06b6d4; } </style> </head> <body> <div class="grid"> <div class="item">1</div><div class="item">2</div><div class="item">3</div> <div class="item">4</div><div class="item">5</div><div class="item">6</div> </div> </body> </html>
Result
Open