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: repeat(3, 1fr); gap: 8px; height: 200px; background: #f1f5f9; border-radius: 8px; padding: 8px; align-items: center; justify-items: center; } .box { background: #6366f1; color: white; padding: 16px; border-radius: 6px; } .box.start { place-self: start; background: #10b981; } .box.end { place-self: end; background: #f59e0b; } </style> </head> <body> <div class="grid"> <div class="box">Centered</div> <div class="box start">Start</div> <div class="box">Centered</div> <div class="box">Centered</div> <div class="box">Centered</div> <div class="box end">End</div> </div> </body> </html>
Result
Open