1. 边框
  2. 轮廓样式

Quick reference

Class
Properties
outline-noneoutline: 2px solid transparent; outline-offset: 2px;
outlineoutline-style: solid;
outline-dashedoutline-style: dashed;
outline-dottedoutline-style: dotted;
outline-doubleoutline-style: double;

基础用法

设置轮廓样式

使用 outline-* 实用程序来更改元素轮廓的样式。

outline

outline-dashed

outline-dotted

outline-double

<button class="outline outline-2 outline-offset-2 ...">Button A</button>
<button class="outline-dashed outline-2 outline-offset-2 ...">Button B</button>
<button class="outline-dotted outline-2 outline-offset-2 ...">Button C</button>
<button class="outline-double outline-3 outline-offset-2 ...">Button D</button>

删除轮廓

使用 outline-none 隐藏聚焦元素上的默认浏览器轮廓。

强烈建议您在使用此实用程序时应用自己的焦点样式以实现可访问性。

Focus the input to see the expected behaviour

<input type="text"
  placeholder="Default focus style"
  class="..." />

<input type="text"
  placeholder="Custom focus style"
  class="focus:outline-none focus:ring focus:border-blue-500 ..." />

outline-none 实用程序使用底层的透明轮廓来实现,以确保元素对于 Windows high contrast mode 用户来说仍然可见。


条件应用

悬停、聚焦和其他状态

Tailwind 允许您使用变体修饰符有条件地在不同状态下应用实用程序类。例如,使用 hover:outline-dashed 来仅 在 hover应用 outline-dashed.

<div class="outline hover:outline-dashed">
  <!-- ... -->
</div>

详细了解, 请参考 Hover, Focus, & Other States 文档.

断点和媒体查询

您还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗模式、首选减少运动等。例如, 使用 md:outline-dashed 来应用 outline-dashed 程序,适用于中等屏幕尺寸及以上。

<div class="outline md:outline-dashed">
  <!-- ... -->
</div>

进一步了解,请参考 响应式设计, 暗黑模式 媒体查询.