html表固定高度?

前端之家收集整理的这篇文章主要介绍了html表固定高度?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个表格,动态地显示来自DB的记录.我只需要修复表的高度,这样如果表有很多行,表就会在表本身内向下滚动窗口.这样用户不需要滚动整个页面

这可能吗…?

提前致谢…

解决方法

对此的一个解决方案是使用围绕< table>的< div> -layer,在其中使用style-attribute:
溢出:自动; max-height :(你想要的高度)

举个例子:

<div id="mainHolder" style="overflow: auto; max-height: 400px;">
    <table>
    ... Lots of data ...
    </table>
</div>

这将创建一个可以在高度上增长的表,但它会被限制在div层中,并且当内容增长大于400px时,您将自动获得滚动条.

使用jQuery,您还可以执行以下操作:

<script type="text/javascript">
window.onresize = doResize;

function doResize() {
    var h = (typeof window.innerHeight != 'undefined' ? window.innerHeight : document.documentElement.clientHeight) - 20;
    $('#mainHolder').css('max-height',h);
    $('#mainHolder').css('height',h);
};

$(document).ready(function () { doResize(); });
</script>
原文链接:https://www.f2er.com/html/226464.html

猜你在找的HTML相关文章