我使用bootstrap,并制作了如下表格。
enter image description here
我想添加垂直红线像下面的照片。我也想添加红色线的阴影。
enter image description here
我如何实现这一点?
当前代码
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</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">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>
</tbody>
</table>
1条答案
按热度按时间htrmnn0y1#
下拉阴影会很棘手,因为框形阴影包含整个元素,而不仅仅是表格单元格的选定边,如图所示。但下面的代码应该适用于你的边框:https://codepen.io/richiegarcia/pen/abjOXwB