要让Bootstrap 5容器适应屏幕高度,可以使用CSS来设置容器的高度为100vh(视口高度)。以下是详细的步骤和示例代码:
以下是一个简单的示例,展示如何让Bootstrap 5容器适应屏幕高度:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bootstrap 5 Full Height Container</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
.full-height-container {
height: 100vh; /* 设置容器高度为视口高度 */
display: flex;
align-items: center;
justify-content: center;
background-color: #f0f0f0;
}
</style>
</head>
<body>
<div class="container-fluid full-height-container">
<div class="row">
<div class="col-md-6 offset-md-3 text-center">
<h1>Full Height Container</h1>
<p>This container adapts to the screen height.</p>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>
height: 100vh
,可以确保容器高度适应屏幕高度。通过以上步骤和示例代码,你可以轻松实现Bootstrap 5容器适应屏幕高度的效果。
领取专属 10元无门槛券
手把手带您无忧上云