En el siguiente HTML, ¿cómo harías que el fondo de la celda con el ID cell1 sea azul?
cell1
<td id="cell1">Data</td>
#cell1 { background-color: blue; }
td#cell1 { background-color: blue; }
cell1 { background-color: blue; }
#cell1 { background-color: blue; } o td#cell1 { background-color: blue; }