CSS: Outline

In CSS, the outline property is used to add an outline around an element, which is similar to a border but is typically used for highlighting purposes and does not affect the layout of the element. The outline is drawn outside the border edge of an element and does not take up space like a border does. Here's an overview of how you can use the outline property in CSS:

  • Basic Outline: You can specify the color, style, and width of the outline using the outline property. The basic syntax is outlined: <outline-color> <outline-style> <outline-width>;
.element {
    outline: 2px solid red; /* Red solid outline with 2 pixels width */
}
  • Outline Color (outline-color): Specifies the color of the outline. You can use named colors, hexadecimal codes, RGB values, or color keywords.
.element {
    outline-color: blue; /* Blue outline */
}
  • Outline Style (outline-style): Specifies the style of the outline. Common values include solid, dotted, dashed, double, groove, ridge, inset, and outset.
.element {
    outline-style: dashed; /* Dashed outline */
}
  • Outline Width (outline-width): Specifies the width of the outline. You can use pixels (px), ems (em), percentages (%), or other units.
.element {
    outline-width: 3px; /* 3 pixels width for the outline */
}
  • Outline Shorthand (outline): You can use the outline shorthand property to specify the color, style, and width of the outline in a single declaration.
.element {
    outline: 2px dotted green; /* Green dotted outline with 2 pixels width */
}
  • Outline Offset (outline-offset): Allows you to adjust the space between the outline and the border edge of an element. Positive values move the outline outward, while negative values move it inward.
.element {
    outline: 2px solid red;
    outline-offset: 10px; /* Move the outline 10 pixels away from the element */
}
  • Removing Outlines: You can remove outlines from elements using the outline: none; declaration. This is commonly used to remove default outlines from clickable elements like links and buttons.
a:focus, button:focus {
    outline: none; /* Remove outline on focus */
}

The outline property is often used to visually highlight focused or active elements on a webpage, providing a visual cue to users about the element's state or interaction status. However, it's essential to ensure that outlines are accessible and do not interfere with the overall design or usability of the page.