1. 边框
  2. 边框样式

Quick reference

Class
Properties
border-solidborder-style: solid;
border-dashedborder-style: dashed;
border-dottedborder-style: dotted;
border-doubleborder-style: double;
border-hiddenborder-style: hidden;
border-noneborder-style: none;

基本用法

¥Basic usage

设置边框样式

¥Setting the border style

使用 border-* 控制元素的边框样式。

¥Use border-* to control an element’s border style.

border-solid

border-dashed

border-dotted

border-double

<div class="border-solid border-2 border-indigo-600 ..."></div>
<div class="border-dashed border-2 border-indigo-600 ..."></div>
<div class="border-dotted border-2 border-indigo-600 ..."></div>
<div class="border-double border-4 border-indigo-600 ..."></div>

无风格

¥No style

使用 border-none 从元素中删除现有的边框样式。

¥Use border-none to remove an existing border style from an element.

这最常用于删除在较小断点处应用的边框样式。

¥This is most commonly used to remove a border style that was applied at a smaller breakpoint.

<button class="border-none ...">Save Changes</button>

有条件地应用

悬停、聚焦和其他状态

Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:border-dotted to only apply the border-dotted utility on hover.

<div class="border-solid hover:border-dotted">
  <!-- ... -->
</div>

For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.

断点和媒体查询

You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:border-dotted to apply the border-dotted utility at only medium screen sizes and above.

<div class="border-solid md:border-dotted">
  <!-- ... -->
</div>

To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.