How to make the HTML link activated by clicking on the
  • ?
  • 后端 未结 14 2009
    没有蜡笔的小新
    没有蜡笔的小新 2020-12-07 16:18

    I have the following markup,

    14条回答
    •  一生所求
      2020-12-07 16:42

      Just to throw this option out there:

      
      

      This is the style I use in my menus, it makes the list item itself a hyperlink (similar to how one would make an image a link).
      For styling, I usually apply something like this:

      nav ul a {
          color: inherit;
          text-decoration: none;
      }
      

      I can then apply whatever styling to the

    • that I wish.

      Note: Validators will complain about this method, but if you're like me and do not base your life around them, this should work just fine.

    提交回复
    热议问题