- CSS Tutorial
- CSS Introduction
- CSS Syntax
- CSS Comments
- CSS Selectors
- CSS Fonts
- CSS Colors
- CSS Backgrounds
- CSS Box Model
- CSS Borders
- CSS Margins
- CSS Padding
- CSS Text
- CSS Images
- CSS Links
- CSS Lists
- CSS Tables
- CSS Outline
- CSS Icons
- CSS Display
- CSS max-witdh
- CSS Position
- CSS z-index
- CSS Overflow
- CSS Float
- CSS Align
- CSS Opacity
- CSS Navigation Bar
- CSS Dropdowns
- CSS Forms
- CSS Units
- CSS !important
- CSS Specificity
- CSS Combinators
- CSS inline-block
- CSS Hover
- CSS Cursors
- CSS Selectors
- CSS Type Selector
- CSS Class Selector
- CSS ID Selector
- CSS Attribute Selector
- CSS Pseudo-class Selector
- CSS Pseudo-element Selector
- CSS Universal Selector
- CSS Advanced
- CSS Text Formatting
- CSS Gradients
- CSS Shadow
- CSS Rounded Corners
- CSS Text Effects
- CSS 2D Transform
- CSS 3D Transform
- CSS Border Images
- CSS Inherit
- CSS Transitions
- CSS Animations
- CSS Box Sizing
- CSS Tooltip
- CSS Masking
- CSS Pagination
- CSS Styling Images
- CSS object-fit
- CSS object-position
- CSS Buttons
- CSS Multiple Columns
- CSS Variables
- CSS Flexbox
- CSS Grid
- CSS Media Queries
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.