question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

-ms prefix not added to transform

See original GitHub issue

As in my test, using autoprefixer with the following settings, it seems not to generate the transform attributes with the -ms prefix.

autoprefixer('last 2 version', 'safari 5', 'ie 9', 'opera 12.1', 'ios 6', 'android 4')

Raw code:

.tile__front {
  transform: rotateY(180deg);
}

What autoprefixer outputs

.tile__front {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

According to caniuse, the -ms prefix is needed for IE9.

Issue Analytics

  • State:closed
  • Created 9 years ago
  • Comments:8

github_iconTop GitHub Comments

1reaction
zapatochecommented, Sep 8, 2016

Amazeballs!!! the latest version wasn’t installed despite running npm update, i’m now on 3.1.1 and it works like a charm. Thanks

0reactions
battaglrcommented, Sep 7, 2016

@zapatoche, have you checked that the versions of autoprefixer are the same —both in this plugin as in the CLI?

Read more comments on GitHub >

github_iconTop Results From Across the Web

Autoprefixer not adding prefix for IE - Stack Overflow
I'm trying to use Grunt-Autoprefixer in my project but its not adding prefix for IE9 transform -ms- http://caniuse.com/#search=transform.
Read more >
Changing the custom entity prefix in Microsoft Dynamics CRM ...
In this article. This article describes how to change the custom entity prefix in Microsoft Dynamics CRM 2011.
Read more >
Solved: Add Prefix from one column to another in place
Select you prefix field, then ctrl+click your heading field. Go to Transform tab > Merge Columns.
Read more >
Add Prefix and Suffix to a Text in Power BI - RADACAD
Now I can use Add Prefix under the Transform tab, Format, and Add Prefix. Add Prefix in Power Query and Power BI. The...
Read more >
Miss, Mrs, Ms: What's the Difference and When Should You ...
You need to learn the difference between Miss, Mrs. and Ms. – not ... You could keep your own name but just change...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found