我有一张桌子,我有七张桌子。我想为tr的第三个孩子设置display: none
,只为那个孩子设置!
如何设置此样式?
答案 0 :(得分:0)
答案 1 :(得分:0)
使用nth-of-type
CSS选择器仅对ID tr
的表格元素td
的第三个#table
元素进行样式化,如下所示:
#table > tr:nth-of-type(3) {
display: none
}
答案 2 :(得分:0)
如果您使用的是JQuery,可以执行以下操作:
$('tr').find('td:eq(3)').hide();
或者,用css你可以做到:
tr > td:nth-child(3) {display: none;}
答案 3 :(得分:0)
<tr style="display:none;">