Is it possible to change img src attribute using css?

后端 未结 9 826
旧巷少年郎
旧巷少年郎 2021-01-07 23:20

I\'m trying to change img src (not the background img src) with css

\"btnUp\"/  

#btnUp{
    cursor:poi         


        
9条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-07 23:44

    you could try something like this

    btnUp  
    

    or


    #btnUp{
        cursor:pointer;
        width:50px;
        height:50px;
        float:left;       
    }
    
    #btnUp{
        background-image:url('x.png')
    }
    
    #btnUp:hover{
        background-image:url('y.png')
    }
    

提交回复
热议问题