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.

This module should only add prefixes, not remove code

See original GitHub issue

Get the code of Paul Irish: http://www.html5rocks.com/en/tutorials/flexbox/quick/

display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-pack: center;
-webkit-box-align: center;

display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-pack: center;
-moz-box-align: center;

display: box;
box-orient: horizontal;
box-pack: center;
box-align: center;

And see what your module will do with it. I wasted 4 hours and tons of nerves to find out what’s going on, because I couldn’t imagine that ‘prefixer’ can remove code instead of adding prefixes - it’s absolutely wrong.

Issue Analytics

  • State:closed
  • Created 9 years ago
  • Comments:26 (17 by maintainers)

github_iconTop GitHub Comments

2reactions
aicommented, Nov 13, 2014

remove: false option was released today in Autoprefixer 3.2.

0reactions
e-ozcommented, Nov 13, 2014

thank you!

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to add a prefix to an existing python logging formatter
I want to add my own prefix to the logger but I don't want to create my own formatter, just to add my...
Read more >
Is Vendor Prefixing Dead? - CSS-Tricks
Let's take a quick stroll down memory-lane to revisit how vendor prefixing CSS properties came to be. I hope I don't trigger PTSD...
Read more >
PEP 616 – String methods to remove prefixes and suffixes
The code will not depend on the user to count the length of a literal. ... in a situation where only a prefix...
Read more >
IntelliSense in Visual Studio Code
Pressing Tab or Enter will insert the selected member. ... below to learn how to disable or customize VS Code's IntelliSense features. ......
Read more >
Prefix parameter names in saved model if trained by multi-GPU?
Can I trim the prefix and still use the model? ... Yes, you can just remove the prefix: ... Also it looks the...
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