bootstrap 移动开发 table
bootstrap吧
全部回复
仅看楼主
level 1
追梦逐鹿 楼主
我现在用的是安卓 webview 加载本地html , table里面 同一个tr 里面有多个td 或者 th 在虚拟机上测试的时候 每个td 或者th 都会独自占一行 而不是显示在同一行 求解 这是什么问题
2015年08月11日 09点08分 1
level 4
贴代码
2015年08月11日 13点08分 2
代码很简单就是教程上的例子 但是放在移动端 就有问题 楼下是代码
2015年08月12日 00点08分
level 1
追梦逐鹿 楼主
<table class="table">
<caption>Optional table caption.</caption>
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
2015年08月12日 00点08分 3
1