csswg-drafts
csswg-drafts copied to clipboard
CSS Working Group Editor Drafts
The CSSWG recently [resolved](https://github.com/w3c/csswg-drafts/issues/6965#issuecomment-1118033655) to add a `:modal` pseudo class that applies to elements that are "modal". That was general purpose, in that it should apply to anything that fits...
Consider a font family with a weight=300 member and a weight = 600 member. Consider the following content: ``` ... ``` The [definition](https://drafts.csswg.org/css-fonts-4/#relative-weights) of `bolder` says that the computed weight...
_This is kind of a follow-on from the closed issue #2701 and #2937._ Would it make any sense to implement native CSS nesting something like this? ```css body { background:...
The `border-image` spec (https://drafts.csswg.org/css-backgrounds/#border-image) is currently light on examples. I wonder if some practice use cases would help folks understand what `border-image` is used for and maybe use it more?...
[Spec](https://drafts.csswg.org/cssom-view/#dom-element-scrollintoview) Right now you can't really tell if `scrollIntoView` scroll animation has finished nor you can't control the speed of the scroll and it might differ with each browser. So...
There have been a lot of issues over the years about manipulating an existing image in some way before it's used by CSS. Some examples from a quick search: -...
Consider content like this: ``` @font-face { font-family: MyCoolWebFont; src: url("someFontThatActuallySupportsTheLetterE.ttf"); unicode-range: something that doesn't contain the letter e; } ... e ``` The relevant section of the spec is...
The [Multi-Screen Window Placement](https://w3c.github.io/window-placement/) spec suggests enhancements for supporting multi-screen devices. I would greatly appreciate feedback and help regarding integrating some of that work in the CSSOM-View Module. Here are...
As part of #7044 we [resolved](https://github.com/w3c/csswg-drafts/issues/7044#issuecomment-1175722383): * Add ability to specify start and end delays in terms of position in a named phase position (keyword + percentage), e.g. animation-delay: contain...
There are a few places where `@supports` is unable to help authors as the property and value they want to test for is supported by the user agent, but not...