Search code examples
htmlhyperlinkhref

how to make a cell of table hyperlink


How can entire table cell be hyperlinked in html without javascript or jquery?

I tried to put href in td tag itself but its not working at least in chrome 18

<td href='http://www.m-w.com/dictionary/' style="cursor:pointer">

Solution

  • 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;
    }
    

    I hope it will work fine.