gpt4 book ai didi

html - 如何使用 Bootstrap 4 使 Div 与屏幕大小相同

转载 作者:太空宇宙 更新时间:2023-11-04 08:01:55 25 4
gpt4 key购买 nike

我正在尝试在网站上制作一种屏幕控制台模拟器。基本上我需要一个黑色的 div 来拉伸(stretch)到屏幕的底部。我还想在控制台下方进一步放置东西。我该怎么做?我找到了一些答案,但没有一个有效,可能是因为我使用的是 Bootstrap 4,而大多数答案都是针对 v3 的。

我的 HTML:

html,
body {
height: 100hv;
}

#console {
height: 100hv;
font-style: italic;
}
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">

<div id="console" class="row bg-dark text-white mh-100">
<div class="col">
Rohan Khajuria
</div>
</div>

最佳答案

你写错了 h-100 类(你写了 mh-100)。

要继承高度,您应该使用百分比而不是视口(viewport)单位:

html,
body {
margin: 0;
height: 100%;
}

或仅使用

body {
margin: 0;
height: 100vh;
}

演示:

html,
body {
margin: 0;
height: 100%;
}

#console {
font-style: italic;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet" />


<div id="console" class="row bg-dark text-white h-100 m-0">
<div class="col">
Rohan Khajuria
</div>
</div>
<p>Next</p>


body {
margin: 0;
height: 100vh;
}

#console {
font-style: italic;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet" />


<div id="console" class="row bg-dark text-white h-100 m-0">
<div class="col">
Rohan Khajuria
</div>
</div>
<p>Next</p>

关于html - 如何使用 Bootstrap 4 使 Div 与屏幕大小相同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46943831/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com