gpt4 book ai didi

css - 如何在详细 View 数据行中选择第二个 td?

转载 作者:数据小太阳 更新时间:2023-10-29 09:16:08 31 4
gpt4 key购买 nike

我正在尝试创建一个新的 CSS 来塑造我的细节 View 。但我无法在 detailsviews 字段行中达到第二个 td。你知道访问第二个 td 吗?

但请想象一下 detailsview 生成的 belov 代码。

<table>
<thead>
...
</thead>

<tbody>
<tr>
<td>Name</td>
<td><input type='text' id='txtName' /></td>
</tr>
</tbody>
</table>

最佳答案

第一个问题是:需要支持IE6吗?如果答案是肯定的,那么你不能这样做。如果不是最简单的解决方案可能是:

td + td { ... }

更现代(且支持更少)的是:

td:nth-child(2) { ... }

这假定您不愿意或不能将类或其他标识符放在第二个 td 上,这样您就可以更轻松地做到这一点。

关于css - 如何在详细 View 数据行中选择第二个 td?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/901273/

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