The week's biggest styling news was the acquisition of VoidZero — Evan You's company behind Vite, Vitest, Rolldown, and Oxc — by Cloudflare. All projects remain MIT-licensed open source. Since 2023, the team shipped Rolldown (now the default bundler in Vite 8), Oxlint (50-100x faster than ESLint with type-aware linting), Oxfmt (30x faster than Prettier), and Vite+. Cloudflare's existing investment in the Vite Environment API made the fit natural, with the team continuing to lead all open-source projects while expanding Vite-based deployment tooling and AI agent tooling on Cloudflare's platform.
On the CSS front, cross-document View Transitions arrived with broad coverage: the @view-transition rule with navigation: auto enables default crossfades between separate HTML pages, while named transition groups via view-transition-name isolate elements for per-element animations like slide-in and slide-out. Support covers Chrome, Edge, and Safari but not Firefox, so progressive enhancement is recommended. Smashing Newsletter issue 561 catalogued several noteworthy CSS additions: Chrome 145's new column-height and column-wrap properties for multi-column vertical wrapping, container query typography systems, sizes="auto" for responsive images, font-variant-emoji for controlling color vs. monochromatic emoji, and safe area insets for notch and Dynamic Island layouts.
CSS @property received a practical adoption guide explaining how registering a property's syntax, inherits, and initial-value unlocks browser interpolation for transitions on custom properties like --angle in linear-gradient(). An experimental CLI tool, css-property-type-validator generate, scans existing CSS files and outputs a reviewable properties.css draft. A color-theming article demonstrated generating an 11-step scale from a single --wll-brand-color using color-mix() in the display-p3 color space, comparing sRGB and oklch trade-offs. Kevin Powell's layout primitives article detailed the Stack, Prose, and Pile patterns as reusable composition tools without position: absolute.