改变容器高度

发布于 2024-10-17 16:47:51 字数 425 浏览 7 评论 0原文

我在这里遇到一些小问题。我对所有页面使用标准容器高度和 css 代码。对于大多数页面来说,有足够的内容来填充它,而对于某些页面来说,内容可能只占页面的 10-20%。那么这些页面使用不同的最小高度是个好主意吗?下面是代码:

#wrapper {
   background-color: #999999;
   margin:0 auto; 
   min-height: 600px;
   width:770px;
   font-family: "Lucida Grande", Verdana, "Lucida Sans Unicode", Arial, Helvetica, 
   sans-serif;
   font-size:15px;
   color: #222222;
   margin-left:60px;
   margin-bottom:60px;
}

I am going through some minor issues here. I am using a standard container height and css code for all pages. For most pages there is enough content to fill it and for some the content may only take 10-20% of the page. So is it a good idea for those pages to use a different min-height? Below is the code:

#wrapper {
   background-color: #999999;
   margin:0 auto; 
   min-height: 600px;
   width:770px;
   font-family: "Lucida Grande", Verdana, "Lucida Sans Unicode", Arial, Helvetica, 
   sans-serif;
   font-size:15px;
   color: #222222;
   margin-left:60px;
   margin-bottom:60px;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

世界等同你 2024-10-24 16:47:51

在单独的类中声明较小的 min-height 可能会更好。

然后,您可以执行

#wrapper.smallerContent {
    min-height: 300px
}

It might be better to declare the lesser min-height in a separate class.

Then, you could do <div id="wrapper" class="smallerContent">.

#wrapper.smallerContent {
    min-height: 300px
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文