MediaWiki:Mobile.css: Difference between revisions

From EULAC
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will affect users of the mobile site: iframe { max-width: 100vw; max-height: 56.25vw; →‎height/width ratio = 315/560 = .5625: }")
 
No edit summary
Line 2: Line 2:
iframe {
iframe {
     max-width: 100vw;
     max-width: 100vw;
     max-height: 56.25vw; /* height/width ratio = 315/560 = .5625 */
     /*max-height: 56.25vw; *//* height/width ratio = 315/560 = .5625 */
}
}

Revision as of 13:44, 20 February 2017

/* CSS placed here will affect users of the mobile site */
iframe {
    max-width: 100vw;
    /*max-height: 56.25vw; *//* height/width ratio = 315/560 = .5625 */
}