在中选择 紧接在CSS中也是如此[ ] >> 我写此代码 <table> <tr> <td><input type="checkbox" id="id" name="name" value="value"></td> <td><label for="id">LABLE</label></td> /*SELECT THIS LABEL*/ </tr> </table> 我需要选择td [1]在DOM和CSS中进行处理。我该怎么做? i写此代码 [[[ Lable [如果您希望能够在HTML中定位标签项,最简单的方法是向其应用类或ID,例如<label class="myLabel" for="id">LABLE</label>。然后,您可以在CSS中定位.myLabel以便对其进行操作。 您可以使用选择器执行此操作 `:nth-child()` 在您的特定示例中,您可以选中该复选框,可以使用: table tr td:nth-child(1) { // put your styling here }

问题描述 投票:-2回答:2
我写此代码

<table> <tr> <td><input type="checkbox" id="id" name="name" value="value"></td> <td><label for="id">LABLE</label></td> /*SELECT THIS LABEL*/ </tr> </table>

我需要选择td [1]在DOM和CSS中进行处理。我该怎么做? 

i写此代码

[[[
Lable
css tags selector
2个回答
0
投票

0
投票
© www.soinside.com 2019 - 2024. All rights reserved.