我有下表
<table class = "new-hire-table">
<tr>
<th>First Name</th>
<td><asp:TextBox ID="txtFName" runat="server" /></td>
<th>Last Name</th>
<td><asp:TextBox ID="txtLName" runat="server" /></td>
</tr>
<tr>
<th>Title</th>
<td><asp:DropDownList ID="ddlTitle" runat="server"></td>
<th>Position</th>
<td><asp:DropDownList ID="ddlPosition" runat="server"></td>
</tr>
</table>
我想将第一列的大小设置为 50px,将最后一列的大小设置为 200px;该表具有名为new-hire-table 的css 类。只是为了测试 css 规则,我正在尝试应用背景颜色。
.new-hire-table tr th:first-child
{
background-color: Blue;
}
但它不工作