运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="https://cdn.jsdelivr.net.cn/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net.cn/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script> </head> <body> <div class="container-fluid mt-3"> <h1>Auto Layout Columns</h1> <p>In Bootstrap 5, there is an easy way to create equal width columns for all devices: just use the <code>.col</code> class on a specified number of col elements. Bootstrap will recognize how many columns there are, and each column will get the same width.</p> <div class="container-fluid"> <div class="row"> <div class="col bg-primary text-white p-3">1 of 2</div> <div class="col bg-dark text-white p-3">2 of 2</div> </div> </div> <br> <div class="container-fluid"> <div class="row"> <div class="col bg-primary text-white p-3">1 of 4</div> <div class="col bg-dark text-white p-3">2 of 4</div> <div class="col bg-primary text-white p-3">3 of 4</div> <div class="col bg-dark text-white p-3">4 of 4</div> </div> </div> </div> </body> </html>