gpt4 book ai didi

html - 如何选择这张表的第一个和最后一个 child ?

转载 作者:太空宇宙 更新时间:2023-11-03 23:50:21 24 4
gpt4 key购买 nike

<div class="showtable-page">
<table class="layout display responsive-table">
<thead>
<tr><th>Show</th><th>Address</th><th>Location</th><th>Dates &amp; Hours</th></tr>
</thead>
<tbody>
<tr>
<td class="organisationnumber">ABC</td>
<td>
<ul style="list-style-type: none;">
<li>KLM</li>
<li>OPQ</li>
</ul>
</td>
<td>US</td>
<td>Mon-Fri 9AM - 6PM</td>
</tr>

对于 CSS,如何获取此表的表 tr td:first-child、表 tr th:first-child?样式表具有一般表格的基本样式,我需要更改此特定表格的填充。

谢谢

最佳答案

给这个表 IDmytable

id 属性指定 HTML 元素的唯一 ID。

尝试:

HTML:

<table id="mytable" class="layout display responsive-table">

CSS:

#mytable th:first-child{
/* your styles*/
}
#mytable td:first-child{
/* your styles*/
}

DEMO here.

关于html - 如何选择这张表的第一个和最后一个 child ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20391999/

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