outline-color
Definition
The outline-color property specifies the line color of an element's outline. An outline is similar to a border except that it is rendered over the element's box model so it does not affect the width or height used by the element. One useful application of an outline, seen below, is to show which form control currently has focus.

Example
input:focus, select:focus, textarea:focus {outline-size: 2px;outline-style: dotted;outline-color: blue;}
Characteristics
Possible values
- color
- Outline color.
invert- Color inversion.
inherit- Use the same computed value as the parent element for this property.
Default value
invert
Applies to
All elements
Inherited
No
See also