Can I have an onclick effect in CSS?

后端 未结 12 1800
悲&欢浪女
悲&欢浪女 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:29

    If you give the element a tabindex then you can use the :focus pseudo class to simulate a click.

    HTML

    
    

    CSS

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

    http://jsfiddle.net/NaTj5/

提交回复
热议问题