how to make a cell of table hyperlink

后端 未结 10 1465
盖世英雄少女心
盖世英雄少女心 2020-12-03 01:02

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

10条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-03 01:42

    Try this:

    HTML:

         

    CSS:

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

    I hope it will work fine.

提交回复
热议问题