Any way to remove IEs black border around submit button in active forms?

Posted by Magnar on Stack Overflow See other posts from Stack Overflow or by Magnar
Published on 2008-09-24T10:46:10Z Indexed on 2010/04/28 0:23 UTC
Read the original article Hit count: 538

Filed under:
|

I am implementing a design that uses custom styled submit-buttons. They are quite simply light grey buttons with a slightly darker outer border:

input.button {
    background: #eee;
    border: 1px solid #ccc;
}

This looks just right in Firefox, Safari and Opera. The problem is with Internet Explorer, both 6 and 7.

Since the form is the first one on the page, it's counted as the main form - and thus active from the get go. The first submit button in the active form receives a solid black border in IE, to mark it as the main action.

If I turn off borders, then the black extra border in IE goes away too. I am looking for a way to keep my normal borders, but remove the outline.

© Stack Overflow or respective owner

Related posts about css

Related posts about internet-explorer