- From: Ryan Garant via GitHub <sysbot+gh@w3.org>
- Date: Wed, 09 Jan 2019 18:15:06 +0000
- To: public-css-archive@w3.org
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