CSS3 icon indicating copy to clipboard operation
CSS3 copied to clipboard

The most complete CSS support for Sublime Text

Results 17 CSS3 issues
Sort by recently updated
recently updated
newest added

https://developer.chrome.com/docs/web-platform/view-transitions/ ```css ::view-transition, ::view-transition-group(), ::view-transition-image-pair(), ::view-transition-old(), ::view-transition-new() { view-transition-name: somename; } ```

Anyone have completions working that can share with us your dev env?

It'd be nice to support the newer mathematical functions. Specifically: - `round()` - `mod()` - `rem()` - `sin()` - `cos()` - `tan()` - `asin()` - `acos()` - `atan()` - `atan2()`...

As per the title; the [`transition-behavior`](https://developer.mozilla.org/en-US/docs/Web/CSS/transition-behavior) property is not currently supported by CSS3, but it is already available in Chrome and Safari (and will be in Firefox soon enough).

The syntax highlighting breaks if any calculations are nested within more than 2 sets of parentheses. A minimal reproducible example can be produced like this: ```css .foo { --foo: calc(((1)));...

The following CSS breaks syntax highlighting: ```css .container { display: none; @container (min-width: 400px) { display: block; } } ``` Preview:

See [`accent-color` on MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/accent-color). It is a relatively new property to override the default UA accent color for some native input elements, most notably checkboxes and radio buttons.