make hover on
  • item
  • change text colour too… CSS trick?

    前端 未结 2 1623
    离开以前
    离开以前 2020-12-10 04:35

    I have some menu bars, and at the moment, the Background changes to black when hovering over an

     
  • content
  • and the text

    2条回答
    •  猫巷女王i
      2020-12-10 04:37

      I'd recommend making the hover work on the 'A' elements instead of the LI elements.

      In order to make the LI elements flly clickable you need to set the 'A' element within it to display:block (or inline-block) as 'A' tags are display:inline by default.

      SO...

      
      
      ul li a {
       display:block;
      }
      
      ul li a:hover, ul li a:focus {
       color:red;
      }
      

    提交回复
    热议问题