Browser Support

Understanding how to think about browser support with a utility-first framework.


As a general rule, Tailwind targets IE11 and the latest version of all modern browsers like Chrome, Firefox, Safari, and Edge.

We do include support for a few features out of the box that are not supported by IE11 (notably object-fit, object-position, and sticky positioning), and have done our best to make it clear that those features require modern browsers in the documentation.

That said, because Tailwind is such a low-level framework you can still easily use it to build sites that need to support older browsers.

Using Tailwind with older browsers

In popular component-based frameworks like Bootstrap or Bulma, it’s important to know what browsers are supported because the implementation details for each component are abstracted away from you.

For example, when you are building a grid with classes like .row or .col-4, you need to know which browsers the framework author is targeting because you have no idea if those classes are implemented using floats, Flexbox, or CSS Grid.

Tailwind on the other hand is a low-level utility framework, where most of the classes map directly to individual CSS properties. This means that which browsers you support is really up to you, not the framework.

For example, here is a three column grid built with Tailwind’s Flexbox utilities, so it will only work in IE10+ since Flexbox isn’t supported in IE9:

  1. <div class="flex">
  2. <div class="w-1/3"><!-- ... --></div>
  3. <div class="w-1/3"><!-- ... --></div>
  4. <div class="w-1/3"><!-- ... --></div>
  5. </div>

If you needed to support IE9, you could build your grids with floats instead, since they are supported in virtually all browsers:

  1. <div class="clearfix">
  2. <div class="float-left w-1/3"><!-- ... --></div>
  3. <div class="float-left w-1/3"><!-- ... --></div>
  4. <div class="float-left w-1/3"><!-- ... --></div>
  5. </div>

Because Tailwind doesn’t impose any opinions about how you build the components in your UI, you can implement them however you like according to your own browser support policy.

For the latest information about which CSS features are supported by which browsers, search the excellent Can I Use database.

Vendor Prefixes

Tailwind doesn’t automatically add vendor prefixes to any of its styles. Instead, we recommend that you use Autoprefixer.

To use it, install it via npm:

  1. # Using npm
  2. npm install autoprefixer
  3. # Using Yarn
  4. yarn add autoprefixer

Then add it to the very end of your plugin list in your PostCSS configuration:

  1. module.exports = {
  2. plugins: [
  3. require('tailwindcss'),
  4. require('autoprefixer'),
  5. ]
  6. }