- From: jonjohnjohnson via GitHub <sysbot+gh@w3.org>
- Date: Mon, 07 May 2018 22:39:21 +0000
- To: public-css-archive@w3.org
@coreyworrell the discussion above highlights the factors/limitations for the issue and reasoning behind the current decision. As far as setting a scrollbars width... ```css :root { --valueThatAlsoSetsScrollbarWidth: 20px; --vw: calc(100vw - var(--valueThatAlsoSetsScrollbarWidth)); } .width-100vw { width: var(--vw); } .width-50vw { width: calc(var(--vw) * .5) ; } ``` -- GitHub Notification of comment by jonjohnjohnson Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/1766#issuecomment-387228410 using your GitHub account
Received on Monday, 7 May 2018 22:39:24 UTC