Questions tagged [autoprefixer]

Analyze CSS code and inject necessary vendor prefixes into CSS rules by referring to compatibility data from Can I Use.

Are inline styles automatically prefixed with vendor prefixes?

Currently, I am working on an application using react and material UI. The configuration for Autoprefixer is defined in the webpack file as shown below in the package.json: postcss: function() { return [ autoprefixer({ browsers: [ ...

Struggling to make the grunt.js task for postcss with autoprefixer function properly

I am currently facing issues with using postcss in conjunction with autoprefixer-core. Even though the css is being generated correctly, autoprefixer doesn't seem to be applying any prefixes. I have already installed postcss and autoprefixer via NPM and m ...

Having trouble with Grunt and Autoprefixer integration not functioning properly

Joining a non-profit open source project, I wanted to contribute by helping out, but I'm struggling with Grunt configuration. Despite my research, I can't seem to figure out why it's not working. I am trying to integrate a plugin that allows for multiple ...

Combining TailwindCSS and NextJS: How to Incorporate PostCSS for Improved Browser Compatibility with IE11 (Including Custom Properties)

As per the documentation, tailwind claims it has support for ie11. ...however it utilizes custom properties which are not compatible with ie11. We are trying to implement this in a basic nextjs project using the following postcss.config.js: module.expor ...

Creating sourcemaps via npm scripts using node-sass and postcss autoprefixer

Is it feasible to create fully functioning sourcemaps using node-sass and postcss autoprefixer by piping output from one to the other? The current configuration in my package.json file is as follows: "scripts": { "sass": "node-sass sass/app.scss --sou ...

Lost in a sea of confusion with ember-cli-postcss and autoprefixer

I'm currently working on an ember build that incorporates autoprefixer. My issue arises from the fact that the output location for 'assets/application-name.css' has shifted from its normal path to 'app/styles/app.css', and I would ...