MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
(Created page with "→CSS placed here will be applied to all skins: →---------------------------: →To make images responsive.: →=================================================: /* * Y...") |
(No difference)
|
Latest revision as of 20:05, 9 April 2020
/* CSS placed here will be applied to all skins */
/*---------------------------*/
/* To make images responsive.*/
/*=================================================*/
/*
* You can implement image resizing by adding the following to your [[img]].
*
*
* <div class="res-img">
* [[File:Whatever.JPG]]
* </div>
*/
.res-img img {
max-width:100%;
height:auto;
}
/*=================================================*/