我目前正在使用Bootstrap和fullpagejs在单页网站上工作:
我遵循了所需的HTML结构,但我网站的每个部分都有很高的高度。所以这些部分不符合他们的内容。
我注意到如果我添加fp-auto-height类,一切都还可以。内容符合各个部分。但这不是正确的方法。
我不知道会发生什么。
这是我的第一部分,例如
<div id="fullpage">
<!-- section 1 begin -->
<div data-anchor="p1-a" class="section">
<div class="container-fluid">
<div id="p1" class="row vertical-align">
<div class="col-md-offset-5 col-md-6">
<div class="row">
<div class="col-xs-12">
<h1 id="title-p1" class="reduce-space text-center">ANTHONY<span style="color: #E28509;">ROANI</span></h1>
</div>
</div> <!-- end row title intro -->
<div class="row">
<div class="col-md-6">
<p class="intro-text">
...
</p>
</div><!-- end left intro -->
<div class="col-md-6">
<p class="intro-text">
...
</p>
</div> <!-- end right intro -->
<div class="container-fluid">
<i class="intro-text"> ...</i>
<p class="intro-text">- Luc Fayard </p>
</div><!-- end citation intro -->
</div> <!-- end row content text intro -->
</div> <!-- end colonnes + offset page 1 -->
</div><!-- end bigrow page 1 -->
</div>
</div> <!-- SECTION 1 END -->
[... other sections]
</div> <!-- end fullpage -->
答案 0 :(得分:1)
请确保您忘记在文档的最开头添加强制<!DOCTYPE html>
声明,详见this tutorial。
例如:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
Demo
</body>
</html>
任何网站都需要Doctype。