Si deseas que la primera fila de tu tabla tenga un fondo de color azul, ¿qué código utilizarías?
th:first-child { background-color: blue; }
tr:first-child { background-color: blue; }
table:first-row { background-color: blue; }
table > tr:first-child { background-color: blue; }