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.
我正在创建一个中心区域为 800px 的网页。如果分辨率更大,“侧边栏”将以另一种颜色呈现。我有这个代码:
body { width: 800px; height: auto; ... }
我希望当内容非常小时,中心区域一直延伸到页面的末尾。做这个的最好方式是什么?
你唯一能做的就是这样的:
<style type="text/css"> html, body, .container { height: 100%; width: 800px; margin: 0 auto; } .container { background: yellow; } </style>
和...
<body> <div class="container"> dewdewd </div> </body>