I have links in a table.
like:
<table>
<tr>
<td><a href="lalala"></a></td>
<td><a href="lalala"></a></td>
<td><a href="lalala"</a></td>
<td><a href="lalala"></a></td>
</tr>
</table>
I want to use mutliple classes:
<td class="XYtableItem itemID"><a href="lalala" /></td>
The problem is: I cant reach the a elements in CSS I tried these:
.XYtableItem a {}
a.XYtableItem {}
XYtableItem > a {}
none of these works. I dont rly know this should work or not. +I cant put classes to the a elements, but doesnt matter, not working eiter.