布局
用于控制元素可见性的工具类。
Class | Styles |
---|---|
visible | visibility: visible; |
invisible | visibility: hidden; |
collapse | visibility: collapse; |
使用 invisible
工具类来隐藏一个元素,但仍然保持它在文档中的位置,从而影响其他元素的布局:
<div class="grid grid-cols-3 gap-4"> <div>01</div> <div class="invisible ...">02</div> <div>03</div></div>
要完全从文档中移除一个元素,请使用 display 属性代替。
使用 collapse
工具类可以像设置为 display: none
一样隐藏表格行、行组、列和列组,但不会影响其他行和列的大小:
发票编号 | 客户 | 金额 |
---|---|---|
#100 | Pendant Publishing | $2,000.00 |
#101 | Kruger Industrial Smoothing | $545.00 |
#102 | J. Peterman | $10,000.25 |
`collapse`
隐藏行发票编号 | 客户 | 金额 |
---|---|---|
#100 | Pendant Publishing | $2,000.00 |
#101 | Kruger Industrial Smoothing | $545.00 |
#102 | J. Peterman | $10,000.25 |
`hidden`
隐藏行发票编号 | 客户 | 金额 |
---|---|---|
#100 | Pendant Publishing | $2,000.00 |
#101 | Kruger Industrial Smoothing | $545.00 |
#102 | J. Peterman | $10,000.25 |
<table> <thead> <tr> <th>发票编号</th> <th>客户</th> <th>金额</th> </tr> </thead> <tbody> <tr> <td>#100</td> <td>Pendant Publishing</td> <td>$2,000.00</td> </tr> <tr class="collapse"> <td>#101</td> <td>Kruger Industrial Smoothing</td> <td>$545.00</td> </tr> <tr> <td>#102</td> <td>J. Peterman</td> <td>$10,000.25</td> </tr> </tbody></table>
这使得能够动态切换行和列而不影响表格布局。
使用 visible
工具类使元素可见:
<div class="grid grid-cols-3 gap-4"> <div>01</div> <div class="visible ...">02</div> <div>03</div></div>
这在不同屏幕尺寸下,主要用于撤销 invisible
工具类的效果。
Prefix a visibility
utility with a breakpoint variant like md:
to only apply the utility at medium screen sizes and above:
<div class="visible md:invisible ..."> <!-- ... --></div>
Learn more about using variants in the variants documentation.