In IE8 if I click exactly on the text-value on a submit button, it doesn\'t get the properties from the input:active CSS selector.
input:active
But if I click elsewh
you can achieve this by applying input:focus to your input:active selector declaration:
input:focus
input:active,input:focus{background-color:#000}
applying :active and :focus together are great for ui/ux/etc.... a lot of things.
:active
:focus