Currently, I am working with IE11 to display a dialog box. The default style for the button in focus includes a dotted border. Is there a way to add an additional value for the outline attribute, like shown below:
input[type=button]:focus{
outline: 1px solid;
}
However, adding it this way replaces the default outline value set by IE. Is there a way to keep both outlines simultaneously?
Thank you.