边框
用于控制元素轮廓样式的实用程序。
使用 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>