@unocss-applet/reset
Version:
collection of reset CSS stylesheets.
17 lines (15 loc) • 314 B
CSS
/**
* Restrict sizing to the page width in all browsers (opinionated).
*/
/* #ifdef h5 */
:where(iframe, img, input, video, select, textarea) {
height: auto;
max-width: 100%;
}
/* #endif */
/* #ifndef h5 */
:where(image, input, video, textarea) {
height: auto;
max-width: 100%;
}
/* #endif */