mobile sticky header broken (apple ios <= 14.4)
-
you are using the css property: ?inset-inline-start“ and ?inset-inline-end“ on <div data-sticky=”yes:shrink”> this isn’t supported by a huge amount of ios users (ios <= 14.4)!
So the layout is broken for this users! Please use ?left“ and ?right“ instead![data-sticky*='yes'], [data-sticky*='fixed'] { position: fixed; z-index: 5; top: calc(var(--admin-bar, 0px) + var(--frame-size, 0px)); /*inset-inline-start: var(--frame-size, 0px);*/ /*inset-inline-end: calc(var(--frame-size, 0px) + var(--scrollbar-width, 0px));*/ left: var(--frame-size, 0px); right: calc(var(--frame-size, 0px) + var(--scrollbar-width, 0px)); }
thx
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘mobile sticky header broken (apple ios <= 14.4)’ is closed to new replies.