I have an image element that I want to change on click.
This works:
#btnLeft:hover { width:7
If you give the element a tabindex then you can use the :focus pseudo class to simulate a click.
tabindex
:focus
HTML
CSS
#btnLeft:focus{ width:70px; height:74px; }
http://jsfiddle.net/NaTj5/