I know how to refer to a tag
with an id
or class
in css
<table id="cooltable">
<tr>
<td></td>
<td></td>
</tr>
</table>
so in css
, u refer this <table>
by
table#cooltable{
...
}
However, if I want to refer the <td>
in <table>
in css, how do I that?