Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用谷歌搜索过这个问题,我似乎看到了除了我需要的所有变体。我需要一个带有固定 ROW 标题的 HTML 表。有没有办法只用 HTML 和 CSS 来做到这一点?如果不是,那么最好的 JQuery 插件是什么?
我觉得我在问别人必须做的事情。但我看到的一切似乎完全是另外一回事。
谢谢!
你有没有尝试过:
table { table-layout:fixed; width:100px; }
添加以下 CSS 样式应该会有所帮助:
table tr { height:100px; }