I have a table like this:
<table>
<tr><td valign='middle'><a href='#'>Link</a></td><td><img src='img.png'></td></tr>
</table>
And a stylesheet like this:
a {
vertical-align: baseline;
}
td a {
vertical-align: default;
}
I'm trying to get my link to be veritcally aligned, but because of my initial vertical-align: baseline declaration (which I cannot change) the valign attribute is ignored. I'd like to fix this in the stylesheet under the td a selector. How can I fix this?
(I am testing this in Chrome 12)