Overview

Browser Support

Panda CSS is built with modern CSS features and uses PostCSS (opens in a new tab) to add support for older browsers.

Panda supports the latest, stable releases of major browsers that support the following features:

Browserlist

Based on the above criteria, the following browsers are supported:

>= 1%
last 1 major version
not dead
Chrome >= 99
Edge >= 99
Firefox >= 97
iOS >= 15.4
Safari >= 15.4
Android >= 115
Opera >= 73

Polyfills

In event that you need to support older browsers, you can use the following polyfills in your PostCSS config:

Here is an example of a postcss.config.js file that uses these polyfills:

module.exports = {
  plugins: [
    '@pandacss/dev/postcss',
    'autoprefixer',
    '@csstools/postcss-cascade-layers'
  ]
}