Effects
Utilities for controlling the opacity of an element.
Class | Styles |
---|---|
opacity-<number> | opacity: <number>%; |
opacity-(<custom-property>) | opacity: var(<custom-property>); |
opacity-[<value>] | opacity: <value>; |
Use opacity-<number>
utilities like opacity-25
and opacity-100
to set the opacity of an element:
Prefix an opacity
utility with a variant like disabled:*
to only apply the utility in that state:
<input class="opacity-100 disabled:opacity-75 ..." type="text" />
Learn more about using variants in the variants documentation.
Use the opacity-[<value>]
syntax to set the opacity based on a completely custom value:
<button class="opacity-[.67] ..."> <!-- ... --></button>
For CSS variables, you can also use the opacity-(<custom-property>)
syntax:
<button class="opacity-(--my-opacity) ..."> <!-- ... --></button>
This is just a shorthand for opacity-[var(<custom-property>)]
that adds the var()
function for you automatically.
Prefix an opacity
utility with a breakpoint variant like md:
to only apply the utility at medium screen sizes and above:
<button class="opacity-50 md:opacity-100 ..."> <!-- ... --></button>
Learn more about using variants in the variants documentation.