Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望我的网页中的一个 div 占据屏幕的整个区域 - 垂直和水平。
下面会有更多的div。
我得到了水平部分,但我不确定如何做垂直部分。 这个网站在一定程度上做到了:http: //ournameismud.co.uk/#
html尝试将and的高度设置body为 100%,然后将 your的高度也设置div为 100%。 例如
html
body
div
html, body { height: 100% padding: 0; margin: 0; } #my-div { width: 100%; height: 100%; }
编辑:忘记将边距和填充设置为 0。