I am looking to add some radius to both my element's border and outline.
Currently, the border-radius
property is only affecting the border itself.
Is there a way to also apply radius to the outline?
.myElement {
border: 2px solid #0064D2;
outline: 2px solid #0099F8;
border-radius: 3px;
}