li menu needs class of “selected”

前端 未结 7 1469
抹茶落季
抹茶落季 2021-01-15 18:20

when the user clicks on a menu tab i want it to remain selected with it a white button.

here is my attempt but its not working. if you click the home button it does

7条回答
  •  有刺的猬
    2021-01-15 18:42

    You haven't even set a class for 'selected' in your CSS.

    Add this and it should work.

    #navigation li .selected {
       [CSS to make white background here.]
    }
    

提交回复
热议问题