Utilities for rotating elements with transform.
Rotate an element by first enabling transforms with the transform
utility, then specifying the rotation angle using the rotate-{angle}
utilities.
<img class="transform rotate-0 ...">
<img class="transform rotate-45 ...">
<img class="transform rotate-90 ...">
<img class="transform rotate-180 ...">
Note that because Tailwind implements transforms using CSS custom properties, the transform utilities are not supported in older browsers like IE11. If you need transforms for your project and need to support older browsers, add your own utilities or other custom CSS.
To control the rotation of an element at a specific breakpoint, add a {screen}:
prefix to any existing rotate utility. For example, use md:rotate-90
to apply the rotate-90
utility at only medium screen sizes and above.
<div class="transform rotate-45 md:rotate-90"></div>
For more information about Tailwind's responsive design features, check out the Responsive Design documentation.
By default Tailwind provides seven general purpose rotate utilities. You change, add, or remove these by editing the theme.rotate
section of your Tailwind config.
// tailwind.config.js
module.exports = {
theme: {
rotate: {
- '-180': '-180deg',
'-90': '-90deg',
- '-45': '-45deg',
'0': '0',
'45': '45deg',
'90': '90deg',
+ '135': '135deg',
'180': '180deg',
+ '270': '270deg',
}
}
}
Learn more about customizing the default theme in the theme customization documentation.
By default, only responsive, hover and focus variants are generated for rotate utilities.
You can control which variants are generated for the rotate utilities by modifying the rotate
property in the variants
section of your tailwind.config.js
file.
For example, this config will also generate active and group-hover variants:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
+ rotate: ['active', 'group-hover'],
}
}
}
If you don't plan to use the rotate utilities in your project, you can disable them entirely by setting the rotate
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ rotate: false,
}
}