【发布时间】:2019-07-17 19:56:38
【问题描述】:
我正在使用 Bootstrap 3.3.7。当我对表格使用“表格响应”类时,它在桌面视图中清晰而正确地显示,但在移动视图中,它显示模糊文本。文字显示不清晰。
<div class="table-responsive">
<table class="table">
<tr>
<th> Sr.No </th>
<th> Company Name </th>
<th> Contact No. </th>
<th> Address </th>
</tr>
<tr>
<th> 1 </th>
<th> ABC </th>
<th> 1234567890 </th>
<th> India </th>
</tr>
<tr>
<th> 2 </th>
<th> XYZ </th>
<th> 0123456789 </th>
<th> India </th>
</tr>
</table>
</div>
我想要,它在移动设备中显示表格的清晰视图,就像桌面视图一样。
【问题讨论】:
标签: html css twitter-bootstrap-3 laravel-5.7