That said, dropping support for `theme-color` feels like a step back. Am I mistaken or does this go against the backwards compatibility design principle?
That said, dropping support for `theme-color` feels like a step back. Am I mistaken or does this go against the backwards compatibility design principle?
I just tested it Safari and Firefox. In Safari, `-webkit-fill-available` behaves just like the value `100%`. In Firefox, `-moz-available` seems to be ignored entirely.
I just tested it Safari and Firefox. In Safari, `-webkit-fill-available` behaves just like the value `100%`. In Firefox, `-moz-available` seems to be ignored entirely.
```css
.element {
height: -moz-available;
height: -webkit-fill-available;
height: stretch;
}
```
caniuse.com/mdn-css_prop...
```css
.element {
height: -moz-available;
height: -webkit-fill-available;
height: stretch;
}
```
caniuse.com/mdn-css_prop...