Re: [csswg-drafts] [css3 positioning] support position:sticky inside an overflow:hidden|auto on general parents (#865)

For my use case, one of the ancestors in the DOM had `overflow-x: hidden;`. _My goal was to simply hide horizontal scrollbar, so this may not apply to your use case_.

The way I fixed it was removing `overflow-x: hidden;` from that element in the DOM and adding it to body instead!

```css
body {
  overflow-x: hidden;
}
```
 

-- 
GitHub Notification of comment by protoEvangelion
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/865#issuecomment-452798759 using your GitHub account

Received on Wednesday, 9 January 2019 18:15:08 UTC