gpt4 book ai didi

html - 具有可滚动主体和 colgroup 的表格不起作用

转载 作者:行者123 更新时间:2023-11-28 02:47:25 25 4
gpt4 key购买 nike

我想通过 colgroup 定义列的宽度。此外,tbody 应该是可滚动的。但这是行不通的。有没有不用js的解决方案?

js fiddle

HTML

     <colgroup>
<col span="1" style="width: 15%;">
<col span="1" style="width: 40%;">
<col span="1" style="width: 20%;">
<col span="1" style="width: 25%;">
</colgroup>

最佳答案

添加到你的CSS:

td:nth-child(1), th:nth-child(1) {
width: 15%;
}
td:nth-child(2), th:nth-child(2) {
width: 40%;
}
td:nth-child(3), th:nth-child(3) {
width: 20%;
}
td:nth-child(4), th:nth-child(4) {
width: 25%;
}

tbody 滚动在 chrome 中工作正常。不知道其他浏览器怎么样

关于html - 具有可滚动主体和 colgroup 的表格不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40933403/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com