📅  最后修改于: 2023-12-03 15:29:38.445000             🧑  作者: Mango
Bootstrap is a popular CSS framework that simplifies the process of designing responsive, mobile-first websites. The latest version of Bootstrap, Bootstrap 5, was released in May 2021 and comes with several new features and improvements.
Bootstrap 5 introduces several new features, including:
To use Bootstrap 5 in your projects, you can either download the CSS and JavaScript files from the official website or use a CDN to include them in your HTML file. Here's an example HTML file that uses Bootstrap:
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">My Website</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container mt-5">
<h1>Welcome to my website</h1>
<p>This is a sample page using Bootstrap 5.</p>
</div>
</body>
</html>
In this example, we include the Bootstrap CSS and JavaScript files using a CDN and use some of the new utility classes to add margins and padding to our HTML elements. We also use the updated navbar component to create a responsive navigation menu.
Bootstrap 5 is a powerful CSS framework that can help you create beautiful and responsive websites quickly. With its new features and improvements, it's worth giving it a try in your next project.