Can I have an onclick effect in CSS?

后端 未结 12 1761
悲&欢浪女
悲&欢浪女 2020-11-21 06:42

I have an image element that I want to change on click.


This works:

#btnLeft:hover {
    width:7         


        
12条回答
  •  [愿得一人]
    2020-11-21 07:17

    The closest you'll get is :active:

    #btnLeft:active {
        width: 70px;
        height: 74px;
    }
    

    However this will only apply the style when the mouse button is held down. The only way to apply a style and keep it applied onclick is to use a bit of JavaScript.

提交回复
热议问题