我想创建一个包含多个100%div的页面,堆叠在一起.与 Bootstrap Cover Template Example类似,但在第一个屏幕下方有额外的div.我已经尝试过四处寻找,但一直无法找到解决方案.我知道它在那里,也许
$("div_name").css("min-height", $(window).height() );
使用这个小代码,将设置包裹您的部分的div的高度.因此,对于需要窗口高度(100%)的网站的每个部分,您必须使用“包装”div.所以它会是这样的:
<div class="section"> <h2>Section 1!</h2> <p>This is just an section with the same height as your browser.</p> </div> <div class="section"> <h2>Section 2!</h2> <p>This is just an section with the same height as your browser.</p> </div>
如果你想要一个例子,你可以看看我的投资组合:http://portfolio.stikkie.net/