【发布时间】:2017-06-18 14:38:41
【问题描述】:
这应该是一个简单的修复,但我似乎无法弄清楚。我试图将我的容器流体类一直延伸到窗口的底部,但它不起作用。我尝试过应用
中的所有内容Height not 100% on Container Fluid even though html and body are
但这些都不起作用。这是我的html和css:
html:
<div class="container-fluid fill-height">
<h1 class="text-center">WikiGen</h1>
<div class="row fill-height">
<div class="col-md-3">
</div>
<div class="col-md-3">
<label class="align-top">Search for an article:</label>
</div>
</div>
<div class="row fill-height">
<div class="col-md-3">
</div>
<div class="col-md-3">
<label class="align-top">Or, pick one at random:</label>
</div>
<div class="col-md-3">
<a href="https://en.wikipedia.org/wiki/Special:Random">
<img id = "dice" src="https://lh3.ggpht.com/kOal-qldAR-YwTvStekh0NbGnwUz-kB5idDv97ZOODRZnxKCs-52YNHLkZX3Ttbjv890=w300"/>
</a>
</div>
<div class="col-md-3">
</div>
</div>
</div>
css:
.fill-height {
min-height: 100%;
height:auto !important;
height: 100%;
}
.container-fluid {
background: grey;
}
h1 {
font-family: "Indie Flower";
font-size: 100px;
}
h3 {
margin: 10px;
font-size: 20px;
}
label{
display: inline-block;
float: right;
clear: left;
width: 250px;
font-size: 18px;
margin: 5.5px;
text-align: right;
}
input {
margin: 5px;
width: 300px;
float: left;
}
.col-md-3 {
/* background: black; */
}
#dice {
width: 50px;
height: 50px;
margin-top: -5px;
margin-left: 40px;
mix-blend-mode: multiply;
}
.row {
margin-bottom: 50px;
}
#button {
margin-top: 2px;
}
【问题讨论】:
-
你没有申请
body,html { height: 100%; }。它在您链接到的 SO 帖子中。