如何让每个div或者article完全适合屏幕
<body>
<article id="one">...</article>
<article id="two">...</article>
<article id="three">...</article>
...
</body>
如何让每篇文章都适合整个屏幕分辨率?例如,初始页面是article#one的内容,向下滚动时,下一页是article#two。
我真的需要这个。 谢谢。
<body>
<article id="one">...</article>
<article id="two">...</article>
<article id="three">...</article>
...
</body>
How can I make each of article fit to the entire screen resolution? For example, the initial page is the content of article#one, and when you scroll down, the next page is article#two.
I really need this.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这非常简单:
另外,确保
html
和body
也有height:100%;
。演示
It's very simple:
Also, make sure
html
andbody
haveheight:100%;
as well.Demo