The outline-offset
defines the transparent margin between the outline and the border of an element.
outline-offset: value;
.div-1 , .div-2{
outline: 2px solid red;
}
.div-1 {
outline-offset: 10px;
}
.div-2 {
outline-offset: 20px;
}
value: sets the given length value as the offset value.