SyntaxFix
Write A Post
Hire A Developer
Questions
If you give the element a tabindex then you can use the :focus pseudo class to simulate a click.
tabindex
:focus
HTML
<img id="btnLeft" tabindex="0" src="http://placehold.it/250x100" />
CSS
#btnLeft:focus{ width:70px; height:74px; }
http://jsfiddle.net/NaTj5/