我正在编写一个角度应用程序,并在我的模板中使用了引导表来列出一些记录。我希望将记录的详细信息显示在表格中,类似于google inbox的方式。
要距离2行,只需使用padding-bottom
<table class="table">
<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 class="edit">
<th scope="row">2</th>
<td style="padding-bottom: 100px;">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>
<div id="detail">I am the div into table></div>
但是如何在tr标签的类编辑中放置一个div元素???