html 高度:自动不起作用
我想让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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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您在 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.