/**
 * 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 */
