目前,当我的产品页面从移动设备加载时,我的表格被切断(见附图)。
我应该向我的css或html添加什么来使其对齐?下面是我的html代码。
您可以查看reference https://www.sebuys.com/shop/windows-10-customised-i7-i5-7th-gen-rgb-gaming-tower-16gb-8gb-ddr4-pc-computer/的产品页面
Windows 10 Customised i7/i5 7th Gen RGB Gaming Tower 16GB / 8GB DDR4 PC Computer
<table class="shop_attributes">
<tbody>
<tr>
<td>Condition:</td>
<td>Brand New</td>
<td>Operating System Edition:</td>
<td>64bit Professional</td>
<td>Form Factor:</td>
<td>Gaming PC Tower</td>
</tr>
<tr>
<td>Storage Type:</td>
<td>SSD & SATA</td>
<td>MPN:</td>
<td>Does Not Apply</td>
<td></td>
<td></td>
</tr>
<tr>
<td>Brand:</td>
<td>Custom, Whitebox</td>
<td>Windows 10</td>
<td>Windows 10</td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
发布于 2019-08-23 17:59:22
表永远不会响应。您所能做的就是将表包装在一个div中,并对该div应用overflow:auto。
<div style="overflow:auto">
<table>
...
</table>
</div>
https://stackoverflow.com/questions/57631033
复制相似问题