【发布时间】:2022-01-04 02:29:27
【问题描述】:
我正在尝试在表格中使用输入标签,而输入标签没有任何边框
<table class="table table-bordered">
<thead>
<tr class="bg-info">
<th>first name</th>
<th>last name</th>
<th>college</th>
<th>department</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="text" class="form-control"></td>
<td><input type="text" class="form-control"></td>
<td><input type="text" class="form-control"></td>
<td><input type="text" class="form-control"></td>
</tr>
</tbody>
</table>
我想删除这个 的空白行,并使输入标签的大小与列的大小一致?请问有没有可能,尝试实现这样的东西
引导程序 4
谢谢你..
【问题讨论】:
标签: javascript html bootstrap-4