RWD Grid View
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> .row { display: flex; flex-wrap: wrap; gap: 16px; } .col { flex: 1 1 200px; background: #eee; padding: 16px; box-sizing: border-box; } </style> </head> <body> <div class="row"> <div class="col">Column 1</div> <div class="col">Column 2</div> <div class="col">Column 3</div> </div> </body> </html>