Hey everyone - seem to be encountering a few issues when it comes to custom CSS. To clarify, my code is working fine in a web browser, it only has trouble in the iOS app.
Two issues, though the first is very minor.
-
When specifying a url for an asset (specifically for
background-image
), in a normal web browser I can simply use a relative path like/local/asset.jpg
, with the browser engine figuring out what domain to use based on where the page is currently loading from. But on iOS, for some reason, I have to hardcode this url (http://10.0.0.95/local/asset.jpg
in this situation). Not that big of a deal but a small inconsistency. -
The much bigger issue is that I can't make the background image scroll along with tiles on the iOS app. In a web browser this can be achieved with
background-attachment: local
, but this doesn't work on iOS. None of the other valid values (scroll
,fixed
,initial
,inherit
) seem to work either. Any ideas?