Back to KB
Difficulty
Intermediate
Read Time
3 min

9 Web Platform Features You're Probably Not Shipping Yet

By Codcompass TeamΒ·Β·3 min read

The browser can now do things your dependencies are still doing for you.


The web platform moved faster in the last 18 months than it did in the previous five. New browser APIs, CSS capabilities, and framework primitives have quietly made entire libraries obsolete β€” but most production codebases haven't caught up.

Nine things below. Every one is shippable today, solves a real problem, and is still being ignored by most teams.


1. Speculation Rules API β€” prerender before the click

Chrome's Speculation Rules API lets you prerender a page before the user clicks the link to it.

<script type="speculationrules">
{
  "prerender": [{
    "where": { "href_matches": "/products/*" }
  }]
}
</script>

Enter fullscreen mode Exit fullscreen mode

Chromium-only, but that's 65%+ of most traffic. Declarative, progressive, costs nothing when unsupported. Median LCP drops 60-80% on the pages it targets.

2. CSS Anchor Positioning β€” delete your tooltip library

Popper.js, Floating UI, Tippy β€” CSS does this natively now, Baseline 2025.

.tooltip {
  position: absolute;
  anchor-name: --trigger;
  top: anchor(--trigger bottom);
  left: anchor(--trigger center);
  position-try-fallbacks: flip-block, flip-inline;
}

Enter fullscreen mode Exit fullscreen mode

No resiz

πŸŽ‰ Mid-Year Sale β€” Unlock Full Article

Base plan from just $4.99/mo or $49/yr

Sign in to read the full article and unlock all 635+ tutorials.

Sign In / Register β€” Start Free Trial

7-day free trial Β· Cancel anytime Β· 30-day money-back