Translate
- Tailwind CSS version
- v1.2.0+
Utilities for translating elements with transform.
Usage
Translate an element by first enabling transforms with the transform
utility, then specifying the translate direction and distance using the translate-x-{amount}
and translate-y-{amount}
utilities.
<img class="transform translate-y-6 ...">
<img class="transform -translate-y-6 ...">
<img class="transform translate-y-0 ...">
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.
Responsive
To control the translation of an element at a specific breakpoint, add a {screen}:
prefix to any existing translate utility. For example, use md:translate-x-8
to apply the translate-x-8
utility at only medium screen sizes and above.
For more information about Tailwind's responsive design features, check out the Responsive Design documentation.
<img class="transform translate-y-6 sm:-translate-y-6 md:translate-y-2 lg:-translate-y-8 xl:translate-y-0...">
Customizing
Translate scale
By default Tailwind provides fixed value translate utilities that match our spacing scale, as well as 50% and 100% variations for translating relative to the element's size.
You can customize the global spacing scale in the theme.spacing
or theme.extend.spacing
sections of your tailwind.config.js
file:
// tailwind.config.js
module.exports = {
theme: {
extend: {
spacing: {
+ '72': '18rem',
+ '84': '21rem',
+ '96': '24rem',
}
}
}
}
To customize the translate scale separately, use the theme.translate
section of your tailwind.config.js
file.
// tailwind.config.js
module.exports = {
theme: {
extend: {
translate: {
+ '1/7': '14.2857143%',
+ '2/7': '28.5714286%',
+ '3/7': '42.8571429%',
+ '4/7': '57.1428571%',
+ '5/7': '71.4285714%',
+ '6/7': '85.7142857%',
}
}
}
}
Learn more about customizing the default theme in the theme customization documentation.
Responsive and pseudo-class variants
By default, only responsive, hover and focus variants are generated for translate utilities.
You can control which variants are generated for the translate utilities by modifying the translate
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: {
// ...
- translate: ['responsive', 'hover', 'focus'],
+ translate: ['responsive', 'hover', 'focus', 'active', 'group-hover'],
}
}
Disabling
If you don't plan to use the translate utilities in your project, you can disable them entirely by setting the translate
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ translate: false,
}
}