桌子高度如何固定?
我想将表格高度固定为 600px,即使内容很长。
I want to fix the table height to 600px, eve if the content goes long.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想将表格高度固定为 600px,即使内容很长。
I want to fix the table height to 600px, eve if the content goes long.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
尝试将表格包装在
div
标记内,并设置div
的 CSS 属性,如下所示:如果表格的高度超过 600 像素,这将使滚动条出现。如果您不想总是将高度强制为 600 像素(如果表格太小而无法占用那么多空间),而只是希望 600 像素为 max,请使用
max-height
而不是高度
。Try wrapping the table within a
div
tag, and setting the CSS properties of thediv
like so:This will make a scrollbar appear if the table's height exceeds 600 pixels. If you don't want to always force the height to 600px if the table it too small to take up that much space, but instead just want 600px to be the max, use
max-height
instead ofheight
.这适用于将页面高度固定为 600px。
this works for to fix a page exact 600px as height..
请参阅下面的示例代码..
See the sample code below..