源代码:
下载代码
点击运行 》
<!DOCTYPE html> <html> <head> <title>Bootstrap5 实例</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="https://cdn.staticfile.org/twitter-bootstrap/5.1.1/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.staticfile.org/twitter-bootstrap/5.1.1/js/bootstrap.bundle.min.js"></script> </head> <body> <div class="container-fluid p-5 bg-primary text-white text-center"> <h1>我的第一个 Bootstrap 页面</h1> <p>这是一个响应式页面,重置浏览器大小查看效果!</p> </div> <div class="container mt-5"> <div class="row"> <div class="col-sm-4"> <h3>第一列</h3> <p>菜鸟教程</p> <p>学的不仅是技术,更是梦想!!!</p> </div> <div class="col-sm-4"> <h3>第二列</h3> <p>菜鸟教程</p> <p>学的不仅是技术,更是梦想!!!</p> </div> <div class="col-sm-4"> <h3>第三列</h3> <p>菜鸟教程</p> <p>学的不仅是技术,更是梦想!!!</p> </div> </div> </div> </body> </html>
运行结果: