-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[css-grid] grid-gap is depracated #1046
Comments
Autoprefixer is only about prefixes. We can generate |
It's not about adding prefixes to |
Yeap, we need to support |
Closed by #1054 |
Released in 8.6 “Follow Reason” |
FYI I just write a plugin that generates |
@ai found the old The comments in this issue suggest that it has been fixed in v8.6 but when I tried on https://autoprefixer.github.io/ (v9.7.3) |
@Dan503 sorry, I have too many open-source tasks today. Can you help me? What is input CSS, what is current warnings and what is expected warnings? |
@Dan503 This issue is not about prefixing For example: .example {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
} transpiles to: .example {
display: -ms-grid;
display: grid;
-ms-grid-columns: 1fr 10px 1fr;
grid-template-columns: 1fr 1fr;
gap: 10px;
} If you want to transpile |
@ai I think this issue can be closed again |
Oh ok, the bug title was misleading. I'll open a new issue because I still think this should be built directly into Autoprefixer core rather than rely on third-party alternatives. |
https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
https://drafts.csswg.org/css-grid/#change-2016-grid-gap
grid-gap
is already deprecated (renamed togap
). It's would be also good to handlegap
property.The text was updated successfully, but these errors were encountered: