EKsumic's Blog

let today = new Beginning();

Click the left button to use the catalog.

OR

[解决方案]移动端Web表格宽度溢出问题

在表格标签外面设置个div 样式为 width: 100%; overflow-x: auto; 把表格包裹住,

同时要注意表格内部的width和height必须是auto,不能写100%,

否则还会撑破 。

 

<div style="width:100%;overflow-x:auto;">
<table>.........</table>
</div>

 

就像这个网页一样:

https://www.v2know.com/MainPage/PreView/215

 

默认滚动条不显示,左右可拖动(请在移动端查看):

填充内容 填充内容 填充内容 填充内容 填充内容 填充内容 填充内容 填充内容
CheckAnswer 2 3 4 5 tr = GetComponent<Transform>(); 7 8
tr = GetComponent<Transform>(); 1 0 tr = GetComponent<Transform>(); 2 3 4  

 

参考文档:

[1] CSS3 overflow-x 属性

This article was last edited at 2020-04-05 15:33:27

* *