在视图底部的白色框

时间:2018-04-20 08:44:58

标签: html css asp.net-mvc bootstrap-4

在我页面/视图的底部,我收到了white box,我无法删除。当我检查元素时,该空间中没有元素(甚至不是body或html) 我试图将身体设置为高度: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更新。

1 个答案:

答案 0 :(得分:0)

而不是使用:

height: 100%;

使用:

height: 100vh;