Is it possible to change img src attribute using css?

qadenza picture qadenza · Jul 17, 2013 · Viewed 90.8k times · Source

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

<img id="btnUp" src="img/btnUp.png" alt="btnUp"/>  

#btnUp{
    cursor:pointer;
}
#btnUp:hover{
    src:img/btnUpHover; /* is this possible ? It would be so elegant way.*/
}

Answer

gjgsoftware.com picture gjgsoftware.com · Nov 10, 2013

You can use :

content: url("/_layouts/images/GEARS_AN.GIF")