change color of selected menu tab

后端 未结 3 1551
一向
一向 2020-12-21 12:14

I grabbed this snippet from another question:



        
3条回答
  •  伪装坚强ぢ
    2020-12-21 12:51

    It is possible to achieve what you are looking for using just CSS:

    ul li a {background-color: white;}
    ul li a:hover {background-color: black;}
    ul li a:focus {background-color: black;}
    

    Demo

提交回复
热议问题