表格
控制表格边框之间间距的工具。
Class | Styles |
---|---|
border-spacing-<number> | border-spacing: calc(var(--spacing) * <number>); |
border-spacing-(<custom-property>) | border-spacing: var(<custom-property>); |
border-spacing-[<value>] | border-spacing: <value>; |
border-spacing-x-<number> | border-spacing: calc(var(--spacing) * <number>) var(--tw-border-spacing-y); |
border-spacing-x-(<custom-property>) | border-spacing: var(<custom-property>) var(--tw-border-spacing-y); |
border-spacing-x-[<value>] | border-spacing: <value> var(--tw-border-spacing-y); |
border-spacing-y-<number> | border-spacing: var(--tw-border-spacing-x) calc(var(--spacing) * <number>); |
border-spacing-y-(<custom-property>) | border-spacing: var(--tw-border-spacing-x) var(<custom-property>); |
border-spacing-y-[<value>] | border-spacing: var(--tw-border-spacing-x) <value>; |
使用 border-spacing-<number>
工具类,例如 border-spacing-2
和 border-spacing-x-3
,来控制具有 分离边框 的表格单元格之间的间距:
州 | 城市 |
---|---|
印第安纳 | 印第安纳波利斯 |
俄亥俄 | 哥伦布 |
密歇根 | 底特律 |
<table class="border-separate border-spacing-2 border border-gray-400 dark:border-gray-500"> <thead> <tr> <th class="border border-gray-300 dark:border-gray-600">州</th> <th class="border border-gray-300 dark:border-gray-600">城市</th> </tr> </thead> <tbody> <tr> <td class="border border-gray-300 dark:border-gray-700">印第安纳</td> <td class="border border-gray-300 dark:border-gray-700">印第安纳波利斯</td> </tr> <tr> <td class="border border-gray-300 dark:border-gray-700">俄亥俄</td> <td class="border border-gray-300 dark:border-gray-700">哥伦布</td> </tr> <tr> <td class="border border-gray-300 dark:border-gray-700">密歇根</td> <td class="border border-gray-300 dark:border-gray-700">底特律</td> </tr> </tbody></table>
Use the border-spacing-[<value>]
syntax to set the 边框间距 based on a completely custom value:
<table class="border-spacing-[7px] ..."> <!-- ... --></table>
For CSS variables, you can also use the border-spacing-(<custom-property>)
syntax:
<table class="border-spacing-(--my-border-spacing) ..."> <!-- ... --></table>
This is just a shorthand for border-spacing-[var(<custom-property>)]
that adds the var()
function for you automatically.
Prefix a border-spacing
utility with a breakpoint variant like md:
to only apply the utility at medium screen sizes and above:
<table class="border-spacing-2 md:border-spacing-4 ..."> <!-- ... --></table>
Learn more about using variants in the variants documentation.
The border-spacing-<number>
utilities are driven by the --spacing
theme variable, which can be customized in your own theme:
@theme { --spacing: 1px; }
Learn more about customizing the spacing scale in the theme variable documentation.