0
創建一個固定左列的html表。創建響應html表時的問題
下面是代碼:
<div class="table-responsive" >
<table class="table table-striped table-bordered table-hover table-condensed" style= "width:50%">
<thead>
<tr>
<th>#</th>
<th>Table heading</th>
<th>Table heading</th>
<th>Table heading</th>
<th>Table heading</th>
<th>Table heading</th>
<th>Table heading</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
<tr>
<td>2</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
<tr>
<td>3</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
</tbody>
</table>
</div>
鏈接:http://jsfiddle.net/4XG7T/3/
表格中顯示如下的移動設備上,並且還它不與固定的列滾動。
任何人都可以請建議我如何實現移動設備上的預期的行爲?
你試過了「溢出:滾動」的風格?並且由於您使用的是絕對定位,爲什麼我看不到您的風格「top/left/...」中的任何對齊方式?您在移動設備上的預期行爲是什麼? – CME64