Bramus

Results 122 comments of Bramus

Extra notes _(mainly for myself so that I don’t forget 😅)_: - It should be easy to reuse existing keyframes as the keyframes for a phase: e.g. a `fade-in` from...

Recently stumbled upon the limitation where I wanted multiple items to be sticky inside the same parent container, but without overlapping each other. Given this markup: ```html ``` I want...

VS Code recently launched a feature called [sticky scroll](https://code.visualstudio.com/updates/v1_70#_editor-sticky-scroll): ![sticky-scroll](https://user-images.githubusercontent.com/213073/183120339-4fc7a6fc-9b70-4996-92dc-303a0353bacd.gif) It’s a great use case for an extension to `position: sticky`. --- Linking back to [my suggestion in #7475](https://github.com/w3c/csswg-drafts/issues/7475#issuecomment-1182982687) which...

> In https://drafts.csswg.org/indexes/ I see several "no-" but no "without-", so the former seems more CSS-y and is also shorter. Looking at that list, I see that these `no-` properties/values...

Sidenote: If authors had [the ability to numerically compare attribute values](https://github.com/w3c/csswg-drafts/issues/5890), they would be able to select those elements using this snippet: ```css select[size>1], select[multiple] { /*🎉 */ } ```...

I’m open to a PR that would fix this.

Your last example uses `::view-before` twice. Second occurrence should be `::view-after`.

This also opens up the way to supporting new units through a polyfill: 1. Alias the original unit to its `--` counterpart, i.e. ```css @property --brm { syntax: ""; initial:...

Received a reply on Twitter where the author noted that [they find the syntax confusing](https://twitter.com/AlexanderTrefz/status/1537784336262565890) > `6--fr` doesn’t read like `6fr` to me, it reads like `6 - -fr` and...