Version Selection
By default, this tool uses the latest versions. Changing versions may take up to 30 seconds to load the new packages. Update your CSS input after changing versions to verify the selection.
Autoprefixer is an essential PostCSS plugin that automatically adds vendor prefixes to your CSS code, ensuring cross-browser compatibility.
Our online Autoprefixer tool provides a free, fast, and secure way to prefix your CSS without installing any software. All processing happens in your browser, ensuring your code remains private and secure.
Modern CSS features often require vendor prefixes for older browsers. Writing these manually is:
Autoprefixer solves these problems by automatically adding only the prefixes you need based on your target browsers.
Input CSS:
.example {
display: flex;
transition: all 0.5s;
user-select: none;
}Prefixed Output:
.example {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-transition: all 0.5s;
transition: all 0.5s;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}| Query | Description |
|---|---|
last 4 versions | Last 4 versions of all browsers |
> 1% | Browsers with >1% global usage |
not dead | Exclude browsers without official support |
last 2 years | Browsers released in last 2 years |
defaults | Browserslist default query |
Yes! This online Autoprefixer tool is completely free with no registration required and no usage limits.
Absolutely. All processing happens entirely in your browser. Your CSS code never leaves your device or gets sent to any server.
No installation required! This is a web-based tool that works directly in your browser. For build automation, consider installing Autoprefixer via npm.
By default, we target the "last 4 versions" of all major browsers. You can customize this using any valid Browserslist query.
Yes! Use the "Advanced Version Selection" section to choose any specific version of PostCSS or Autoprefixer for compatibility testing.
FTC Disclosure: GoOnlineTools content is user/reader supported. This means that when you click on some of our links and make a purchase, we may earn a commission at no additional cost to you