Ionic 2 中 Table 的水平滚动
Horizontal scrolling of Table in Ionic 2
我有一个动态生成的 Table,我想在 Ionic 2 页面中显示。
问题是,当 table 比屏幕宽时,table 就会被剪切,导致无法完整阅读它。
所以水平滚动可以解决这个问题,我已经找到了类似的 但是这个问题的答案不适用于 tables。有人有什么建议吗?
我通过用 div 包装 table 并将 "overflow-x:auto" 添加到 div 来解决它。
<div style="overflow-x:auto">
<table></table>
</div>
我有一个动态生成的 Table,我想在 Ionic 2 页面中显示。 问题是,当 table 比屏幕宽时,table 就会被剪切,导致无法完整阅读它。
所以水平滚动可以解决这个问题,我已经找到了类似的
我通过用 div 包装 table 并将 "overflow-x:auto" 添加到 div 来解决它。
<div style="overflow-x:auto">
<table></table>
</div>