You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am unable to enable grid handling with the autoprefixer. According to https://github.com/postcss/autoprefixer#does-autoprefixer-polyfill-grid-layout-for-ie one has to pass the grid: true option or place a /* autoprefixer grid: on */ comment. But I have no idea where to set this option and the comment seems to be ignored, no matter if I set it at the top of the less-file or before the grid rules.
Input:
/* autoprefixer grid: on */
div {
/* autoprefixer grid: on */
display: grid;
}
Command line call:
lessc --autoprefix test.less test.css
Expected output:
div {
display: -ms-grid;
display: grid;
}
Actual output:
/* autoprefixer grid: on */
div {
/* autoprefixer grid: on */
display: grid;
}
The text was updated successfully, but these errors were encountered:
I am unable to enable grid handling with the autoprefixer. According to https://github.com/postcss/autoprefixer#does-autoprefixer-polyfill-grid-layout-for-ie one has to pass the
grid: true
option or place a/* autoprefixer grid: on */
comment. But I have no idea where to set this option and the comment seems to be ignored, no matter if I set it at the top of the less-file or before the grid rules.Input:
Command line call:
Expected output:
Actual output:
The text was updated successfully, but these errors were encountered: