CSS Outline
An outline is a line that is drawn around elements, OUTSIDE the borders, to make the element "stand out".
This element has a black border and a green outline with a width of 5px.
Note: Outline differs from borders! The outline is drawn outside the element's border, and may overlap other content. Also, the outline is NOT a part of the element's dimensions; the element's total width and height is not affected by the width of the outline.
CSS has the following outline properties:
outline-style- Specifies the style of the outlineoutline-color- Specifies the color of the outlineoutline-width- Specifies the width of the outlineoutline-offset- Adds space between the outline and the edge/border of an elementoutline- A shorthand property
CSS The outline-style Property
The outline-style property specifies the style of the outline, and can have one of the following values:
dotted- Defines a dotted outlinedashed- Defines a dashed outlinesolid- Defines a solid outlinedouble- Defines a double outlinegroove- Defines a 3D grooved outlineridge- Defines a 3D ridged outlineinset- Defines a 3D inset outlineoutset- Defines a 3D outset outlinenone- Defines no outlinehidden- Defines a hidden outline
The following example shows the different outline-style values:
Example
p.dotted {outline-style: dotted;}
p.dashed {outline-style: dashed;}
p.solid {outline-style: solid;}
p.double {outline-style: double;}
p.groove {outline-style: groove;}
p.ridge {outline-style: ridge;}
p.inset {outline-style: inset;}
p.outset {outline-style: outset;}
Note: None of the other outline properties (which you will learn more about in the next chapters) will have ANY effect unless the
outline-styleproperty is set!