Re: [csswg-drafts] [css-overflow] Add mechanism for disabling scrollbars (#419)

> How to implement a single line text editing `contenteditable` with hidden, but scrollable content? (like `<input type=text />`)

@Yaffle, here is a specified way to achieve the desired result:

```css
el {
  white-space: nowrap;
  overflow-inline: scroll;
  scrollbar-width: none;
}
```

But afaict from the title/op, this issue can be closed. Then we can move other panning/style scrollbar ui discussions for other/new filings.

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


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Wednesday, 14 April 2021 02:59:13 UTC