gpt4 book ai didi

html - CSS 选择器选择第一个和第二个表格单元格

转载 作者:太空狗 更新时间:2023-10-29 14:40:45 30 4
gpt4 key购买 nike

谁能帮我弄清楚我需要哪些选择器来全局更改我的两列表中列的宽度?

使用这个,当然会选择所有单元格:

table td {
width: 50px;
}

我想要的是:

<table>
<tr>
<td style="width: 50px">data in first column</td>
<td style="width: 180px">data in second column</td>
</tr>
<tr>
<td style="width: 50px">more data in first column</td>
<td style="width: 180px">more data in second column</td>
</tr>
</table>

我想将宽度规范放在样式表中,而不是为每个标签隐式键入宽度。什么 CSS 选择器可以让我适本地设置 50px 宽度和 180px?

最佳答案

是的。

td:first-child{
width:50px;
}

td:nth-child(2){
width: 180px;
}

或者,按照 Brainslav 编辑的建议:

td:nth-child(1) {
width: 50px;}
td:nth-child(2) {
width: 180px;}

link

关于html - CSS 选择器选择第一个和第二个表格单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15306303/

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