- I have searched the issues of this repository and believe that this is not a duplicate.
Reproduction link
https://github.com/Renderz/table-test
Steps to reproduce
pnpm install
pnpm start
What is expected?
表格能正确计算nowrap下单元格长度,并显示横向滚动条
What is actually happening?
表格并没有计算nowrap下单元格长度,没有显示横向滚动条
| Environment | Info |
| ------------ | ------------ |
| antd | 4.18.6 |
| React | 17.0.2 |
| System | macOS |
| Browser | chrome86.0.4240.75 |
- 目前看其他issue了解到不建议在max-content下使用ellipsis,本issue只是想确认查看特定场景下,浏览器显示不一致的问题。
- 测试了出现问题的浏览器版本,max-content和nowrap功能都是ok的。那么问题应该是出现在其他地方?
- 86-89chrome版本因为找不到安装包,没有测试,但是确认90版本是OK的
- 安装包下载地址
4条答案
按热度按时间mzaanser1#
建议升级浏览器版本,目前的策略是不会对老版本 Chrome 的一些边界 bug 进行兼容。可能也没什么好办法。
2j4z5cfb2#
建议升级浏览器版本,目前的策略是不会对老版本 Chrome 的一些边界 bug 进行兼容。可能也没什么好办法。
safari15.2也存在显示问题,火狐还没试过。
tjrkku2a3#
建议升级浏览器版本,目前的策略是不会对老版本 Chrome 的一些边界 bug 进行兼容。可能也没什么好办法。
似乎rc-table在
scroll.x = max-content
,无论是否存在fixColumn
,都应该返回table-layout: auto
(但是还没看出浏览器差异是怎么造成的
gpfsuwkq4#
.ant-table-layout-fixed table {
table-layout:auto !important;
}