Chrome now understands the specification-defined round parameter in clip-path: polygon(), producing rounded corners without an SVG mask or a stack of gradients. Other engines currently reject the entire rounded polygon, so the safe pattern stores the optional prefix in a custom property guarded by @supports; unsupported browsers still receive the sharp polygon. The widely supported nonzero and evenodd fill rules also work with polygon(), shape(), and path().
CSS-Tricks builds animated borders from a gradient-backed border-image. Registered percentage, number, and angle custom properties make the gradient stop, slice depth, and conic rotation interpolable, while border-image-repeat: round tiles complete slices. The important caveat remains geometric: border images do not curve to rounded border shapes.
Safari Technology Preview 250 adds text-decoration-inset, white-space-trim, wrap-inside, content on ::marker, and the spaces value of ruby-overhang. It also implements Explicit Resource Management, streaming fetch() uploads, and scrolling fixes. The practical pattern is progressive enhancement with a complete baseline: ship the relationship in CSS when supported, but never let a new syntax invalidate the essential shape, content, or interaction.
Design-token pipelines can make cascade policy explicit too. A namespaced DTCG $extensions value records the intended CSS layer without polluting the portable token model, and a Style Dictionary format groups the generated custom properties into matching @layer blocks. Unknown compliant tools must preserve that metadata, unlike an ad hoc top-level key.