I am attempting to achieve a specific look for my button:
I have experimented with using outline, but unfortunately I am unable to apply border radius to the outline. I have also tried using a box shadow with a white border, but I need the border to be see-through. Any suggestions or solutions would be greatly welcomed.
It seems I can't adjust the border radius of the outline using the following code:
.btn {
outline: 1px solid #B54104;
outline-offset: 1px;
}
The visible gap between the outline and button is not transparent in the following snippet:
.btn {
border: 1px solid #fff;
box-shadow: 0 0 0 1px #c5170a;
}
The space between the button and the outlined offset must be completely transparent.