I am working on a site where in the master css file anchor outline has been set to none like this:
*:focus {
outline: none!important;
}
I have added a more specific class to override this the above like this:
header a:focus {
outline: initial!important;
}
Problem is that this is not working. Below code works
outline: 2px solid $black!important;
but I want the browser default styling to show which I thought should be possible with "initial" keyword instead of me trying to mimic the all the default styles.
initial
works for me. Please create a working example to help demonstrate your issue. – Marita