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

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -