gpt4 book ai didi

html - 删除 twitter Bootstrap 表的第一行

转载 作者:技术小花猫 更新时间:2023-10-29 12:01:06 26 4
gpt4 key购买 nike

众所周知,当您使用 Twitter Bootstrap 获取表格时,您会得到如下结果: enter image description here

是否可以删除表格的第一行,即“Abos Girolamo”上方的行?谢谢

更新:这是表格的代码:

<table class="table table-no-border">
<tbody>

<tr>

<td>Abos Girolamo</td>
</tr>

<tr>

<td>Aboulker Isabelle</td>
</tr>

<tr>

<td>Adam Adolphe</td>
</tr>
</tbody>
</table>

最佳答案

.table > tbody > tr:first-child > td {
border: none;
}

@import url('http://getbootstrap.com/dist/css/bootstrap.css');

table {
margin-top: 50px;
}

.table > thead > tr:first-child > td,
.table > tbody > tr:first-child > td {
border: none;
}
<table class="table table-no-border">
<tbody>

<tr>

<td>Abos Girolamo</td>
</tr>

<tr>

<td>Aboulker Isabelle</td>
</tr>

<tr>

<td>Adam Adolphe</td>
</tr>
</tbody>
</table>

关于html - 删除 twitter Bootstrap 表的第一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21407988/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com