css - C# media query for specific max-width in firefox -
what trying media query triggers in firefox , until window reaches max-width of 1352px. i've tried different versions
@@-moz-document url-prefix() , media screen , (max-width: 1352px) { #timetable { transform: scale(0.85) !important }
or
@@media screen , (max-width: 1352px) , (moz-document: url-prefix()) { #timetable { transform: scale(0.85) !important }
but unfortunately both won't work.
this code work
@-moz-document url-prefix() { @media screen , (max-width: 1352px) { #timetable { transform: scale(0.85) !important } } }
wiki
Comments
Post a Comment