The CSS Landscape Just Shifted Again
If you blinked, you missed three Baseline promotions, a brand-new selector syntax, and a flex-wrap: balance behavior that finally solves the ragged-last-row problem every layout engineer has fought since 2015.
This roundup covers the features that are actually shipping — not just spec drafts. That distinction matters: the CSS Working Group produces beautiful ideas every month, but only a handful survive contact with real browser engines.
We'll walk through:
- Interest invokers and why tooltips need asymmetric delays
- Class prefix selectors — cleaner than
[class^=]hacks flex-wrap: balanceand what it means for card grids@supports named-feature()for capability detection that actually works- Baseline status of
text-box-trim,sibling-count(), andautocorrect

Interest Invokers: Delayed-Then-Instant Tooltips
The classic tooltip UX problem: users hover accidentally, tooltip fires, they move away, tooltip lingers. The fix is asymmetric timing — slow to appear, instant to disappear.
/* Delayed appearance, instant dismissal */
.tooltip-trigger {
interest-delay-start: 500ms; /* wait before showing */
interest-delay-end: 0ms; /* hide immediately on exit */
}
.tooltip-content {
/* Only render when the interest invoker is active */
position: absolute;
top: 100%;
left: 0;
}
<!-- The interesttarget attribute wires the trigger to the popover -->
<button interesttarget="my-tip">Hover me</button>
<div id="my-tip" popover>Delayed tooltip content</div>
Progressive enhancement pattern: Since only Chrome supports interest invokers today, pair it with the legacy :hover + transition-delay approach. Browsers that don't understand interest-delay-start simply ignore the declaration.
/* Fallback for non-supporting browsers */
@supports not (interest-delay-start: 500ms) {
.tooltip-trigger:hover + .tooltip-content {
opacity: 1;
transition-delay: 500ms;
}
}
Class Prefix Selector
A new syntax that replaces three ugly attribute selectors with one readable rule:
/* The new way — clean and performant */
.something-* {
color: rebeccapurple;
}
/* The old way — three selectors to cover the same cases */
[class^="something-"],
[class*=" something-"],
[class*="something-"] {
color: rebeccapurple;
}
Not supported anywhere yet, but the spec is trivial and the ergonomic win is huge — expect fast adoption.

flex-wrap: balance and @supports named-feature()
flex-wrap: balance
text-wrap: balance was a gift for headlines. flex-wrap: balance extends that same idea to flex containers — items distribute evenly across rows instead of leaving a sad orphan card on the last line.
| Feature | text-wrap: balance | flex-wrap: balance |
|---|---|---|
| Target | Inline text | Flex items |
| Browser | Widely supported | Chrome 152+ only |
| Use case | Headlines, captions | Card grids, tag clouds |
| Fallback | text-wrap: wrap | flex-wrap: wrap |
@supports named-feature()
Some capabilities can't be tested with a simple @supports (property: value) check. named-feature() lets you query them by name:
@supports named-feature(anchor-positioning-transforms) {
/* Browser correctly applies transforms to anchor-positioned elements */
.popover { transform: translateY(-4px); }
}
Baseline Updates Worth Knowing
sibling-count()/sibling-index()— now Baseline. No more:nth-childgymnastics for staggered animations.text-box-trim/text-box-edge— now Baseline. Finally, typographic vertical rhythm without negative margins.autocorrect— now Baseline in Chrome 152. Native spellcheck control.alpha()— Chrome 152 only. Safari and Firefox pending.::backdrop,::scroll-marker,::view-transition—CSSPseudoElementsupport in Chrome only.
Caveats and Next Steps
The honest truth: half of this list is Chrome-only. If you ship to a global audience, treat interest-delay-*, named-feature(), alpha(), and flex-wrap: balance as enhancements, never as load-bearing features. Build the fallback first, layer the shiny on top.
The class prefix selector is the standout — it's simple enough to polyfill mentally and useful enough to warrant a postcss plugin today.
What to learn next:
- Read the CSS Working Group's
css-values-5spec forsibling-count()semantics. - Audit your design system for tooltip delays — asymmetric timing is a one-line win.
- Experiment with
text-box-trimon your typography scale; it eliminates a whole class of margin hacks.
For a deeper look at how large platforms handle configuration and reliability at scale, see this breakdown of Airbnb's dynamic config sidecar architecture. And if you're planning infrastructure migrations, the Oracle-to-PostgreSQL migration blueprint is worth your time.
Source: CSS-Tricks — What's !important #18

The Bottom Line
CSS in 2025 is moving fast — faster than most teams can absorb. The winning strategy isn't to chase every spec draft; it's to identify the 20% of features that solve 80% of your layout pain and adopt those behind a @supports gate.
Start with flex-wrap: balance and the class prefix selector. They're low-risk, high-reward. Wait on interest invokers until Firefox ships support — unless your audience is Chrome-heavy.
The web platform is finally giving us native tools for problems we've hacked around for a decade. Use them, but keep your fallbacks honest.