Equivalent of width:-moz-available in Google Chrome
Try this.
elem {
width: 100%;
width: -moz-available; /* For Mozzila */
width: -webkit-fill-available; /* For Chrome */
width: stretch; /* Unprefixed */
}
What about this?
box-sizing: border-box;