I’m trying to include a link within <td></td>, but it’s not showing at all.
<tr align=left>
<td><span style="font-weight:bold;">Website</span></td>
<td><a href="http://www.zionsb.org"></a></td>
</tr>
CSS
td {
text-transform: none;
line-height: 115%;
vertical-align: middle;
padding: 5px 0 5px 5px;
}
Please where am I going wrong ?
You must have some content in your link for it to be visible. For example :
You could also bind the click event to the cell if you have nothing to display :
but that wouldn’t alone make the link visible.