level 1
我现在用的是安卓 webview 加载本地html , table里面 同一个tr 里面有多个td 或者 th 在虚拟机上测试的时候 每个td 或者th 都会独自占一行 而不是显示在同一行 求解 这是什么问题
2015年08月11日 09点08分
1
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