Tailwind CSS on GitHub

Scale

Utilities for scaling elements with transform.

Default class reference

Class
Properties
scale-0--tw-scale-x: 0; --tw-scale-y: 0;
scale-50--tw-scale-x: .5; --tw-scale-y: .5;
scale-75--tw-scale-x: .75; --tw-scale-y: .75;
scale-90--tw-scale-x: .9; --tw-scale-y: .9;
scale-95--tw-scale-x: .95; --tw-scale-y: .95;
scale-100--tw-scale-x: 1; --tw-scale-y: 1;
scale-105--tw-scale-x: 1.05; --tw-scale-y: 1.05;
scale-110--tw-scale-x: 1.1; --tw-scale-y: 1.1;
scale-125--tw-scale-x: 1.25; --tw-scale-y: 1.25;
scale-150--tw-scale-x: 1.5; --tw-scale-y: 1.5;
scale-x-0--tw-scale-x: 0;
scale-x-50--tw-scale-x: .5;
scale-x-75--tw-scale-x: .75;
scale-x-90--tw-scale-x: .9;
scale-x-95--tw-scale-x: .95;
scale-x-100--tw-scale-x: 1;
scale-x-105--tw-scale-x: 1.05;
scale-x-110--tw-scale-x: 1.1;
scale-x-125--tw-scale-x: 1.25;
scale-x-150--tw-scale-x: 1.5;
scale-y-0--tw-scale-y: 0;
scale-y-50--tw-scale-y: .5;
scale-y-75--tw-scale-y: .75;
scale-y-90--tw-scale-y: .9;
scale-y-95--tw-scale-y: .95;
scale-y-100--tw-scale-y: 1;
scale-y-105--tw-scale-y: 1.05;
scale-y-110--tw-scale-y: 1.1;
scale-y-125--tw-scale-y: 1.25;
scale-y-150--tw-scale-y: 1.5;

Usage

Control the scale of an element by first enabling transforms with the transform utility, then specifying the scale using the scale-{percentage}, scale-x-{percentage}, and scale-y-{percentage} utilities.

<img class="transform scale-75 ...">
<img class="transform scale-100 ...">
<img class="transform scale-125 ...">
<img class="transform scale-150 ...">

Responsive

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

<div class="transform scale-100 md:scale-75"></div>

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

Customizing

Scale values

By default, Tailwind provides ten general purpose scale utilities. You change, add, or remove these by editing the theme.scale section of your Tailwind config.

  // tailwind.config.js
  module.exports = {
    theme: {
      scale: {
        '0': '0',
+       '25': '.25',
        '50': '.5',
        '75': '.75',
        '90': '.9',
-       '95': '.95',
        '100': '1',
-       '105': '1.05',
-       '110': '1.1',
        '125': '1.25',
        '150': '1.5',
+       '200': '2',
      }
    }
  }

Learn more about customizing the default theme in the theme customization documentation.

Variants

By default, only responsive, hover and focus variants are generated for scale utilities.

You can control which variants are generated for the scale utilities by modifying the scale 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: {
        // ...
+       scale: ['active', 'group-hover'],
      }
    }
  }

Disabling

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

  // tailwind.config.js
  module.exports = {
    corePlugins: {
      // ...
+     scale: false,
    }
  }