你正在瀏覽的是 Tailwind CSS v2. 的技術文件
Tailwind CSS 的 GitHub

Visibility

Utilities for controlling the visibility of an element.

Default class reference

Class
屬性
visiblevisibility: visible;
invisiblevisibility: hidden;

Invisible

Use invisible to hide an element, but still maintain its place in the DOM, affecting the layout of other elements (compare with .hidden from the display documentation).

1
3
<div class="flex justify-center space-x-4">
  <div>1</div>
  <div class="invisible ...">2</div>
  <div>3</div>
</div>

Visible

Use visible to make an element visible. This is mostly useful for undoing the invisible utility at different screen sizes.

1
2
3
<div class="flex justify-center space-x-4">
  <div>1</div>
  <div class="visible ...">2</div>
  <div>3</div>
</div>

Responsive

To apply a visibility utility only at a specific breakpoint, add a {screen}: prefix to the existing class name. For example, adding the class md:invisible to an element would apply the invisible utility at medium screen sizes and above.

<div class="visible md:invisible ..."></div>

For more information about Tailwind’s responsive design features, check out the Responsive Design documentation.

Customizing

Variants

默認情況下, 只有 響應式 的 visibility 變化模式 (variants) 會產生。

tailwind.config.jsvariants 區塊中變更 visibility 屬性來決定有哪些變化模式會生成。

舉個例子來說,這個設定將會生成 響應式 和 hover 的變化模式。

  // tailwind.config.js
  module.exports = {
    variants: {
      extend: {
        // ...
+       visibility: ['responsive', 'hover'],
      }
    }
  }

Disabling

如果你不打算在專案中使用 visibility 功能,可以在你的設定檔裡的 corePlugins 屬性中將 visibility 設定為 false 來停用功能:

  // tailwind.config.js
  module.exports = {
    corePlugins: {
      // ...
+     visibility: false,
    }
  }