gpt4 book ai didi

html - View 底部的白框

转载 作者:行者123 更新时间:2023-11-28 01:50:52 25 4
gpt4 key购买 nike

在我的页面/ View 底部,我得到一个 white box我无法删除。当我检查元素时,该空间中没有元素(甚至没有正文或 html)我尝试将 body 设置为 height:100%,没有填充、边距等,但没有任何区别。抱歉,如果我提供的代码太少,如果您需要更多,请大声说出来。

这是我的 CSS:

.header {
border: 0px;
margin: 0px;
padding: 0px;
padding-bottom: 10px;
background-color: black;
color: white;
display: block;
text-align: center;
}
h1 {
border: 0px;
margin: 0px;
padding: 20px;
}
.container-fluid {
height: auto;
border: 0px;
margin-left: auto;
margin-right: auto;
display: flex;
align-items: center;
justify-content: center;
background-color: black;
}

.btn btn-primary {
border: 20px;
}
.card {
align-items: center;
justify-content: center;
}
.card-body {
display: block;
padding: 0px;
}
.card-title > img {
margin-rigth: 5px;
}

.table {
font-size: 20px;
}

HTML:

 @{
ViewData["Title"] = "Home Page";
}

<div class="header">
<h1>My Health Vision</h1>
<div class="col-md-3">
<button type="button" class="btn btn-primary btn-lg btn-block">Add new goal</button>
</div>
</div>

<div class="container-fluid">
<div class="card" style="width:400px">
<div class="card-body">
<h4 class="card-title"><img src="images/goal-icon.png" width="60" height="60" />My weigth goal</h4>
<table class="table">
<tbody>
<tr>
<th scope="row">Goal weigth</th>
<td>85</td>
</tr>
<tr>
<th scope="row">Deadline</th>
<td>2018-05-30</td>
</tr>
<tr>
<th scope="row">Current weight </th>
<td>90 <button type="button" class="btn btn-primary btn-sm">Update</button></td>
</tr>
<tr>
<th scope="row">Best weigth</th>
<td>87</td>
</tr>

</tbody>
</table>
</div>
</div>
</div>

用 HTML 更新。

最佳答案

而不是使用:

height: 100%;

使用:

height: 100vh;

关于html - View 底部的白框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49937607/

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