The outline-offset property introduces a gap between the outline and the edge or border of an element. This space between the element and its outline remains transparent.
In the following example, an outline is defined to extend 15 pixels beyond the border edge.
Example
p { margin: 30px; border: 1px solid black; outline: 1px solid red; outline-offset: 15px; } |
The subsequent example demonstrates that the area between an element and its outline remains transparent.
Example
p { margin: 30px; background: yellow; border: 1px solid black; outline: 1px solid red; outline-offset: 15px; } |
Property |
Description |
outline |
A single declaration shorthand for specifying outline-width, outline-style, and outline-color. |
outline-color |
Specifies the color of an outline. |
outline-offset |
Specifies the distance between an outline and the edge or border of an element. |
outline-style |
Specifies the style of an outline. |
outline-width |
Specifies the width of an outline |