逐渐增加 div 的 max/min-height: ?
所以我有一个内容 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的东西吗?
Something like this?