私は次の表を持っています
<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;
}
しかし、それは機能していません