我不确定为什么<footer>
没有显示在我正在构建的AngularJS应用上。
我在index.html页面上使用此代码
<footer class="page-footer">
<div>
<p>© 2017 Company<span class="gap">-</span>All rights reserved</p>
</div>
</footer>
CSS:
html, body {
height: 100%;
}
.page-footer {
position: absolute;
bottom: 0;
background-color: yellow;
}
我做错了什么?谢谢你的帮助。