-
Notifications
You must be signed in to change notification settings - Fork 12k
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
Autoprefixer does not work in Angular 7 #13344
Comments
This is the indented behaviour in Version 7 see: #11453 To enable autoprefixing for grid you need add |
@alan-agius4 Where should I add |
You can try to add this comment in your scss / css files. If you put this comment on the top, it will enable grid for all the file. If you set it in a declaration block, grid will only be available inside this block. |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Bug Report or Feature Request (mark with an
x
)Command (mark with an
x
)Versions
Repro steps
angular7Project.zip
Step1: install node_modules for the above provided project.
Step2: run
ng serve
Step3: Open the browser devtools and focus the element with class "sample-div", which has
display:grid
as applied style.Desired functionality
The
.sample-div
should also contain the prefixed style which isdisplay: -ms-grid
like in Angular 6.angular6Project.zip
The text was updated successfully, but these errors were encountered: