I am using ASP.NET MVC 4 and Microsoft.AspNet.Web.Optimization '1.1.2' after minimizing this media query:
@media (min-width: 1025px) and (max-width: 1599px) { #circles_inner { width: 1080px; margin: auto; } }
I get this css:
@media(min-width:1025px)and (max-width:1599px){
space is omitted to
and
The new version of chrome on mac does not understand this.
This is a truly viable update for Google Chrome. This is just the more rigorous syntax of media queries. The solution for MVC projects can be found here: http://i-skool.co.uk/net/mvc/mvc-bundling-and-minifcation-issues-with-google-chrome/
css google-chrome media-queries asp.net-mvc-4 bundling-and-minification
Sandro adamia
source share