We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.25.2
3.2.25
Chrome(98.0.4758.109)
MacOS(12.1)
https://codesandbox.io/s/r4gehn
直接打开即可
正常来说,栅格布局为24格,内部使用6个span为4的元素不应该换行
最后一个元素换行到第二排了
.n-col--4-span 被设置了宽度 16.67%,6个子元素总宽度为100.02%,导致了换行问题,修改为16.66% 或者设置为 calc(100% / 6) 可以正常显示
The text was updated successfully, but these errors were encountered:
3132a8d
fix(col): can't be wrapped correctly when span=6, closes tusen-ai#2497
span=6
81b8a21
No branches or pull requests
TuSimple/naive-ui version (版本)
2.25.2
Vue version (Vue 版本)
3.2.25
Browser and its version (浏览器及其版本)
Chrome(98.0.4758.109)
System and its version (系统及其版本)
MacOS(12.1)
Node version (Node 版本)
Reappearance link (重现链接)
https://codesandbox.io/s/r4gehn
Reappearance steps (重现步骤)
直接打开即可
Expected results (期望的结果)
正常来说,栅格布局为24格,内部使用6个span为4的元素不应该换行
Actual results (实际的结果)
最后一个元素换行到第二排了
Remarks (补充说明)
.n-col--4-span 被设置了宽度 16.67%,6个子元素总宽度为100.02%,导致了换行问题,修改为16.66% 或者设置为 calc(100% / 6) 可以正常显示
The text was updated successfully, but these errors were encountered: