How to make table cells into hyperlinks
P粉129731808
P粉129731808 2023-08-23 23:28:05
0
2
529
<p>How to set an entire table cell as a hyperlink without using JavaScript or jQuery? </p> <p>I tried putting the href in the td tag itself, but that didn't work, at least in Chrome 18. </p> <pre class="brush:php;toolbar:false;"><td href='http://www.m-w.com/dictionary/' style="cursor:pointer"></pre> </p>
P粉129731808
P粉129731808

reply all(2)
P粉501007768

Try this way:

<td><a href="..." style="display:block;">&nbsp;</a></td>
P粉733166744

Try this:

HTML:

<table width="200" border="1" class="table">
    <tr>
        <td><a href="#">&nbsp;</a></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
    </tr>
</table>

CSS:

.table a
{
    display:block;
    text-decoration:none;
}

Hope it works properly.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template