Arpit Agrawal
arpit.codes
Arpit Agrawal
@arpit.codes
Web designer-developer
Ohh no! But thank you for clarifying Jen. I’ll go ahead and file an issue for my site.

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?
October 31, 2025 at 11:15 AM
Reposted by Arpit Agrawal
More than *anything* the people who actually know how technology works, who actually build things, wish that people would treat LLMs like every other technology, and be normal about them. Don't build a religion about them, don't force them on people, don't ignore the problems. Just be normal.
October 17, 2025 at 4:34 AM
Thanks for pointing that out!

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.
August 6, 2025 at 6:37 AM
Don’t forget the Firefox fallback!

```css
.element {
height: -moz-available;
height: -webkit-fill-available;
height: stretch;
}
```

caniuse.com/mdn-css_prop...
CSS property: width: stretch | Can I use... Support tables for HTML5, CSS3, etc
caniuse.com
August 6, 2025 at 5:42 AM
I just tested in Safari Technology Preview 224 and it looks like the issue is finally resolved. Thank you to everyone involved!
August 3, 2025 at 2:11 AM