<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中进行处理。我该怎么做?
<label class="myLabel" for="id">LABLE</label>
`:nth-child()`
在您的特定示例中,您可以选中该复选框,可以使用:
table tr td:nth-child(1) { // put your styling here }