我有單頁面網站,其中第一部分主要部分應該是觀看者屏幕/瀏覽器大小的100%,第二部分應該低於觀看區域,因此當用戶點擊鏈接時,頁面會滾動到第二部分。 。如何將最小高度設置爲100%的查看屏幕和一半的頁面?
我如何做到這一點, 到目前爲止我試過,但它不設置最小高度喲100%
HTML:
<div class="container">
<div class="firsthalf">
this is the first part of the site
<a href="#help"> <i class="fa fa-question-circle fa-lg"></i>
<div class="notice">this is aligned to bottom of first half
</div></div>
</div>
<div class="container">
<div id="help" class="secondhalf">
<div class="col-md-8 col-md-offset-2">
<div class="well">
we are in second part of the site
</div>
<a href="#top" class="btn btn-default"><i class="fa fa-arrow-up "></i> Top</a>
</div>
</div>
</div>
CSS:
body, html {
height: 100%;
}
.firsthalf{
height:100%;
}
.notice{
margin-bottom:0%;
padding-bottom:5px;
}
.secondhalf{
margin-top:25%;
margin-bottom:50%;
padding-top:25px;
min-height:50%;
}
謝謝,這是最好的,我正在考慮設置顯示:表 – AMB
'display:table'很好,但是每個css在某些標記佈局中都是很好的......'position'是最適合和更清潔的案件!! :) – NoobEditor
@AMB:與此同時...你好我想接受答案! :) – NoobEditor