I am using IE11 to render one of my dialog boxes, so along with the default dotted border which is the existing style for the button in focus, is there anyway I could add one more value for the outline attribute like below:
input[type=button]:focus{
outline: 1px solid;
}
Adding it this way is actually replacing the default outline value which is set by IE so I just wanted to know if getting both is possible.
Thanks.
outline
can take till 3 properties which are similar asborder
.I tested it in all browser and it seems to work fine: