Description
Do you want to request a feature or report a bug?
A removal of a feature, in a sense.
What is the current behavior?
React automatically adds the px
suffix for numerical values passed to the style
prop. As some CSS properties accept unitless values, React maintains a blacklist of properties that shouldn't get px
auto-appended.
The problem is that this solution doesn't scale. It requires us to add more & more properties to the list as CSS specs expand and recently the list grows faster; Flexbox & Grid added quite a few of them. What's more confusing, some of those props would work both with & without the px
suffix and that changes the meaning (lineHeight
is suffering from that).
Although I'm a React newbie I'm quite familiar with this issue due to being a member of the jQuery Core team. jQuery has the same logic as React here and we keep having to add to the list. We've actually exposed the list at jQuery.cssNumber so that people don't always have to wait for us to add support for a property and do a release.
That's why we decided that in jQuery 4 we'll drop the auto-prefixing blacklist and turn to a whitelist that lists only a few most common properties to which we want to auto-append px
(mostly because they're extremely common and we don't want to break the world too much); we plan to not expand that list unless we missed something really common. You can see the current plan in my PR: jquery/jquery#4055. In particular, see the proposed whitelist in a (visualized) regexp in:
https://github.com/jquery/jquery/blob/03e9dba3882868e1ee79f1fb0504326da925644f/src/css/isAutoPx.js.
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem. Your bug will get fixed much faster if we can run your code and it doesn't have dependencies other than React. Paste the link to your JSFiddle (https://jsfiddle.net/Luktwrdm/) or CodeSandbox (https://codesandbox.io/s/new) example below:
What is the expected behavior?
I propose that React could do the same thing jQuery is planning to and switch the ever-expanding blacklist of CSS props that shouldn't have the px
suffix applied to a small whitelist that should have the suffix applied.
This topic has been initially described in #13550.
Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?
All browses & OSs. I don't know how old this logic is in React.