Hi,
I have cells that look like
<td class="menuLink"><a href="...">...</a></td>
In my style sheet, how can I specify a style for the anchor tags? Or
do I have to create a new style altogether and write out
<td class="menuLink"><a class="menuLinkAnchor" href="...">...</a></td>
? Thanks, - Dave
Harlan Messinger - 28 Aug 2008 17:41 GMT
> Hi,
>
[quoted text clipped - 6 lines]
>
> <td class="menuLink"><a class="menuLinkAnchor" href="...">...</a></td>
.menuLink a { ... }
or even
td.menuLink a { ... }
If you're going to write CSS, you ought to familiarize yourself with
http://www.w3.org/TR/CSS21/selector.html.