When using IE 7 and earlier versions, I am struggling to remove the black border that shows up when an input button is in focus. I attempted the following CSS code without success:
input:focus {
outline-width: 0;
outline: none;
border: 1px solid #FFF;
}
Do you have any suggestions or solutions to tackle this issue?