我的表格有id="mytable"
。我正在尝试在第一个和最后一个<th>
上应用一些CSS。我尝试了这个,但它不起作用。
#mytable th:first,
#mytable th:last{
//css goes here
}
答案 0 :(得分:49)
#mytable th:last-child, #mytable th:first-child {
//css goes here
}
答案 1 :(得分:-1)
对于CSS
#myTable thead tr th:first,
#myTable thead tr th:last{
/*CSS goes here*/
}
使用Jquery(仅限最后一个孩子):
$("#mytable th:last-child").css({
/*CSS goes here*/
});