1. 表格
  2. 边框坍塌

Quick reference

属性
border-collapseborder-collapse: collapse;
border-separateborder-collapse: separate;

基本用法

¥Basic usage

坍塌

¥Collapse

尽可能使用 border-collapse 将相邻的单元格边框合并为一个边框。请注意,这包括顶层 <table> 标记上的折叠边框。

¥Use border-collapse to combine adjacent cell borders into a single border when possible. Note that this includes collapsing borders on the top-level <table> tag.

State City
Indiana Indianapolis
Ohio Columbus
Michigan Detroit
<table class="border-collapse border border-slate-400 ...">
  <thead>
    <tr>
      <th class="border border-slate-300 ...">State</th>
      <th class="border border-slate-300 ...">City</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td class="border border-slate-300 ...">Indiana</td>
      <td class="border border-slate-300 ...">Indianapolis</td>
    </tr>
    <tr>
      <td class="border border-slate-300 ...">Ohio</td>
      <td class="border border-slate-300 ...">Columbus</td>
    </tr>
    <tr>
      <td class="border border-slate-300 ...">Michigan</td>
      <td class="border border-slate-300 ...">Detroit</td>
    </tr>
  </tbody>
</table>

分离

¥Separate

使用 border-separate 强制每个单元格显示其自己的单独边框。

¥Use border-separate to force each cell to display its own separate borders.

State City
Indiana Indianapolis
Ohio Columbus
Michigan Detroit
<table class="border-separate border border-slate-400 ...">
  <thead>
    <tr>
      <th class="border border-slate-300 ...">State</th>
      <th class="border border-slate-300 ...">City</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td class="border border-slate-300 ...">Indiana</td>
      <td class="border border-slate-300 ...">Indianapolis</td>
    </tr>
    <tr>
      <td class="border border-slate-300 ...">Ohio</td>
      <td class="border border-slate-300 ...">Columbus</td>
    </tr>
    <tr>
      <td class="border border-slate-300 ...">Michigan</td>
      <td class="border border-slate-300 ...">Detroit</td>
    </tr>
  </tbody>
</table>

有条件地应用

悬停、聚焦和其他状态

Tailwind 允许你使用变体修饰符在不同状态下有条件地应用工具类。例如,使用hover:border-collapse 仅在 hover 时应用 border-collapse 工具。

<table class="hover:border-collapse">
  <!-- ... -->
</table>

有关所有可用状态修饰符的完整列表,请查看悬停、聚焦、以及其他状态 文档。

断点和媒体查询

你还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗黑模式、首选减少运动等。例如,使用 md:border-collapse 仅在中等屏幕尺寸及以上时应用 border-collapse 工具。

<table class="md:border-collapse">
  <!-- ... -->
</table>

要了解更多信息,请查看有关 响应式设计暗黑模式、以及 其他媒体查询修饰符 的文档。