Skip to content

Outline Offset

Controls the offset of an element's outline.

Utility Properties

oo-0

outline-offset: 0px;

oo-1

outline-offset: 1px;

oo-2

outline-offset: 2px;

oo-3

outline-offset: 3px;

oo-4

outline-offset: 4px;

This example showcases various outline-offset values:

  • The 1px outline offset utility places the outline 1 pixel away from the border of the element.
  • The 2px outline offset utility places the outline 2 pixels away from the border of the element.
  • The 3px outline offset utility places the outline 3 pixels away from the border of the element.
<div class="d-g g-16 gtc-1 sm:gtc-3">
<div class="b-1 bc-indigo d-16 oc-indigo oo-1 os-s rad-1"></div>
<div class="b-1 bc-indigo d-16 oc-indigo oo-2 os-s rad-1"></div>
<div class="b-1 bc-indigo d-16 oc-indigo oo-3 os-s rad-1"></div>
</div>

Conditional styles

Learn how to override existing utilities based on the userโ€™s screen size or other factors, such as hover states.

Media modifier

You can combine responsive breakpoints like sm:oo-*,md:oo-*, lg:oo-*, and xxl:oo-* allows targeting specific utilities in different viewports.

<div class="oo-1 md:oo-2 ..."></div>

Hover modifier

Alternatively, you can apply :hover by using h:oo-* utility to override elements and change their values when hovering over them.

<div class="oo-1 h:oo-2 ..."></div>