html 高度:自动不起作用

发布于 2025-01-07 01:22:43 字数 212 浏览 0 评论 0原文

我想让aspx页面的高度自动。所以我固定了主 div 高度:自动。但它不起作用。

代码:

   <div id='Div1' style="background-color: #F5F5F4; width: 100%; height:auto; padding: 15px;">

只有 div 的顶部显示背景颜色。

i want to make the height of the aspx page auto. So i have fixed main div height:auto. But it is not working.

Code:

   <div id='Div1' style="background-color: #F5F5F4; width: 100%; height:auto; padding: 15px;">

only top portion of the div is showing the background color.

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

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

发布评论

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

评论(2

酒与心事 2025-01-14 01:22:43

style 属性必须为 overflow: auto ,如果内容超过预定义的高度,则会呈现滚动条

it has to be overflow: auto in the style attribute, which will render a scrollbar if the content is more than the pre-defined height

神仙妹妹 2025-01-14 01:22:43

您在 div 上指定了 height: 550px,因此无论内容有多少,它的高度始终为 550 像素。如果您希望其高度取决于其内容,请删除此声明。

You have height: 550px specified on your div, so it will always be 550 pixels high no matter how much content it has. If you would like its height to depend on its content instead, remove this declaration.

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