How do you create a toggle button?

后端 未结 15 2928
名媛妹妹
名媛妹妹 2020-11-27 11:46

I want to create a toggle button in html using css. I want it so that when you click on it , it stays pushed in and than when you click it on it again it pops out.

15条回答
  •  醉梦人生
    2020-11-27 12:05

    You can use the "active" pseudoclass (it won't work on IE6, though, for elements other than links)

    a:active
    {
        ...desired style here...
    }
    

提交回复
热议问题