已解决
css-表格样式
来自网友在路上 153853提问 提问时间:2023-11-01 23:53:27阅读次数: 53
最佳答案 问答题库538位专家为你答疑解惑
滑动表格
外层嵌套一个盒子设置固定大小,并添加overflow:hidden auto只有y轴滑动,隐藏x轴滑动
表头固定不滑动可以添加position:sticky;top:0
<div style="width:878px;height:685px;overflow:hidden auto" class="tableDiv"><n-table class="Tab-1-table"><thead style="position:sticky;top:0"></thead><tbody></tbody></n-table></div></div></div>
不想显示滑动条可以添加:
.tableDiv::-webkit-scrollbar {display: none; /* Chrome Safari */}
使表格不超出固定宽度,文字自适应换行
.Tab-1-table {table-layout: fixed;word-break: break-word;word-wrap: break-word;}
表格组件:https://www.naiveui.com/zh-CN/os-theme/components/table
查看全文
99%的人还看了
相似问题
猜你感兴趣
版权申明
本文"css-表格样式":http://eshow365.cn/6-29717-0.html 内容来自互联网,请自行判断内容的正确性。如有侵权请联系我们,立即删除!