CSS Outline Offset

Outline-offset moves the outline away from the border.

Preview

Code

<style>
.box{
outline:3px solid #2563eb;
outline-offset:6px;
padding:20px;
border:2px solid #e5e7eb;
}
</style>

<div class="box">Outline offset example</div>

More CSS Outline Examples (5)