Filters
Utilities for applying hue-rotate filters to an element.
Class | Styles |
---|---|
hue-rotate-<number> | filter: hue-rotate(<number>deg); |
-hue-rotate-<number> | filter: hue-rotate(calc(<number>deg * -1)); |
hue-rotate-(<custom-property>) | filter: hue-rotate(var(<custom-property>)); |
hue-rotate-[<value>] | filter: hue-rotate(<value>); |
Use utilities like hue-rotate-90
and hue-rotate-180
to rotate the hue of an element by degrees:
hue-rotate-15
hue-rotate-90
hue-rotate-180
hue-rotate-270
<img class="hue-rotate-15" src="/img/mountains.jpg" /><img class="hue-rotate-90" src="/img/mountains.jpg" /><img class="hue-rotate-180" src="/img/mountains.jpg" /><img class="hue-rotate-270" src="/img/mountains.jpg" />
Use utilities like -hue-rotate-15
and -hue-rotate-45
to set a negative hue rotate value:
-hue-rotate-15
-hue-rotate-45
-hue-rotate-90
<img class="-hue-rotate-15" src="/img/mountains.jpg" /><img class="-hue-rotate-45" src="/img/mountains.jpg" /><img class="-hue-rotate-90" src="/img/mountains.jpg" />
Use the hue-rotate-[<value>]
syntax to set the hue rotation based on a completely custom value:
<img class="hue-rotate-[3.142rad] ..." src="/img/mountains.jpg" />
For CSS variables, you can also use the hue-rotate-(<custom-property>)
syntax:
<img class="hue-rotate-(--my-hue-rotate) ..." src="/img/mountains.jpg" />
This is just a shorthand for hue-rotate-[var(<custom-property>)]
that adds the var()
function for you automatically.
Prefix a filter: hue-rotate()
utility with a breakpoint variant like md:
to only apply the utility at medium screen sizes and above:
<img class="hue-rotate-60 md:hue-rotate-0 ..." src="/img/mountains.jpg" />
Learn more about using variants in the variants documentation.
Tailwind CSS 中文网(本网站)的目标是为中文开发者提供准确、及时的 Tailwind CSS 中文文档
Tailwind CSS 中文文档由本网站维护人员共同翻译,采用 MIT 开源协议发布
本网站与 tailwindcss.com 及 Tailwind Labs Inc. 并无从属关系
Tailwind 商标由 Tailwind Labs Inc. 所有
京ICP备15031610号-8