Change text color when hovered over li

前端 未结 4 850
日久生厌
日久生厌 2021-01-25 01:13

I want to change the text color of links when an

  • element is hovered over. Right now I have

    #nav li a:hover {
      margin-left: -10px;
      pad         
    
    
            
  • 4条回答
    •  长情又很酷
      2021-01-25 01:52

      Try Something Like this

       #nav li a 
      {
        margin-left: -10px;
        padding-left: 10px;
        background-color: #13118C;
        color: white; 
        font-weight: bold;
        width: 100%;
      
      }
      

      apply styles to child a

      #nav li:hover a 
      {
       margin-left: -10px;
       padding-left: 10px;
       background-color: #13118C; 
       font-weight: bold;
       width: 100%;
       color: blue;
       }
      

    提交回复
    热议问题