逐渐增加 div 的 max/min-height: ?

发布于 2024-12-23 18:40:40 字数 266 浏览 1 评论 0原文

所以我有一个内容 div,在增量高度为 400 像素时看起来效果最好。

如果内容大小不同,底部看起来很有趣,即,如果由于里面的内容而高度为 638 像素。但是,如果它是 800px,它看起来很棒(1200 和 1600 等相同)

有没有办法做 #div { min-height: 800px;但如果内容有 801px,请将其对齐到 #div { min-height: 1200px; } 使用 CSS 还是 JavaScript?

So I have a content div that looks best at incremental heights of 400px.

If the content varies in size, the bottom looks funny ie, if it's 638px tall due to the content inside. However if it's 800px it looks great (same for 1200 and 1600, etc.)

Is there a way to do a #div { min-height: 800px; } but if there is even 801px of content, make it snap to #div { min-height: 1200px; } with CSS or Javascript?

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

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

发布评论

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

评论(1

音盲 2024-12-30 18:40:40

像这样的东西吗?

// set the height of a div with an id of 'test'
$(document).ready(function() {
 var height = $('#test').height();
 if(height % 400) {
     height = height - (height % 400) + 400;
 }
 $('#test').css('height',height+'px');
});

Something like this?

// set the height of a div with an id of 'test'
$(document).ready(function() {
 var height = $('#test').height();
 if(height % 400) {
     height = height - (height % 400) + 400;
 }
 $('#test').css('height',height+'px');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文