Class reference

Opacity - 图1

Example

Opacity - 图2

Responsive

To control the opacity of an element at a specific breakpoint, add a {screen}: prefix to any existing opacity utility. For example, use md:opacity-50 to apply the opacity-50 utility at only medium screen sizes and above.

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

Opacity - 图3

all

Opacity - 图4

sm

Opacity - 图5

md

Opacity - 图6

lg

Opacity - 图7

xl

Opacity - 图8

Customizing

Opacity Scale

By default Tailwind provides five opacity utilities based on a simple numeric scale. You change, add, or remove these by editing the opacity section of your Tailwind config.

Opacity - 图9

Responsive and State Variants

By default, only responsive variants are generated for opacity utilities.

You can control which variants are generated for the opacity utilities by modifying the opacity property in the modules section of your Tailwind config file.

For example, this config will also generate hover and focus variants:

Opacity - 图10

Disabling

If you don’t plan to use the opacity utilities in your project, you can disable them entirely by setting the opacity property to false in the modules section of your config file:

Opacity - 图11