<!-- applying style at various levels. It matters! You can make each one render a different way. -->

<table class="strawberry"><tbody><tr><td><a href="someplace.html">Go</a></td></tr>
<table><tr class="strawberry"><td><a href="someplace.html">Go</a></td></tr>
<table><tr><td class="strawberry"><a href="someplace.html">Go</a></td></tr>
<table><tr><td><span class="strawberry"><a href="someplace.html">Go</a></span></td></tr>
<table><tr><td><a class="strawberry" href="someplace.html">Go</a></td></tr>
<table><tr><td><a href="someplace.html"><span class="strawberry">Go</span></a></td></tr></tbody></table>