【问题标题】:html table with fixed header , horizontal scroll and dynamic column width具有固定标题、水平滚动和动态列宽的 html 表格
【发布时间】:2017-09-24 03:25:32
【问题描述】:

我正在尝试在最后一个完整的一周内创建带有固定标题、动态列宽和水平滚动的 html 表格。已经有许多选项可用,但每个选项都缺少或错过了部分要求。

任何帮助将不胜感激。

【问题讨论】:

标签: javascript html css html-table


【解决方案1】:

@ashish - 在动态宽度方面不太确定,但我可能会为您指出正确的方向以及您的其他问题。至于标题,尝试这样的事情:

.th { position: fixed; }

对于水平滚动,尝试在 HTML 中的表格周围添加一个容器 div,如下所示:

<div style="overflow-x:auto;">

  <table>
  ... table content ...
  </table>

</div>

希望这会有所帮助!

【讨论】:

    猜你喜欢
    • 2011-10-11
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-01-27
    • 1970-01-01
    • 2017-01-05
    相关资源
    最近更新 更多