Showing Browser Support for Web Platform Features on Your Own Blog
Showing Browser Support for Web Platform Features on Your Own Blog êŽë š
Itâs a responsible thing to do to mention the browser support of web platform features when you write about them. I could probably do better than I do.
What I tend to do is go for what I feel like the biggest highlights, as well as stick to the Big Three: Chrome, Firefox, and Safari. Saying âthis only works in Safari right nowâ is pretty important information to know, or, âthis works in Chrome and Firefox and weâre waiting for Safari support.â
That may be a bit simplistic. Iâm aware Edge exists, for the record, it just uses Chromium so it doesnât feel particularly notable to call that out. Same story with browsers like Opera, Samsung Internet, and Arc: itâs just Chrome. If there really was a big important difference between Regular Chrome and Samsung Internet or whatever, Iâd call it out, it just seems awfully rare. I typically just say âChrome ânâ Friendsâ.
I mostly find Safari and Safari iOS not terribly different either, but if there was a serious difference it would definitely be worth calling out.
I also like to link to a source that is known to update. That typically means whatever the relevant MDN page is or caniuse, which is more and more MDN powered anyway.
Iâve been talking about scroll-driven animations a bunch, so linking to a highly relevant property like animation-timeline
on caniuse I feel like is a pertinent thing to do, while also saying something like:
At the time of this writing, scroll-driven animations are only a Chrome ânâ Friends feature, but I see feature flags in both Safari and Firefox so itâs coming!
That caniuse page pulls data directly from MDN anyway, so a link directly to the browser support for that property is probably even better. Thatâs what hash links are for I suppose.
What to Avoid
Screenshots of browser support tables. Itâs just going to go out of date, probably faster than you think.
Live Updating Embeds
Ire Aderinokunâs CanIUse Embed takes this job on. It sucks the data in from caniuse (or MDN) then produces an iframe of that feature. Hereâs what it produces for the text-decoration-skip-ink
feature:
Thatâs pretty neat, butâŠ
The CanIUse Embed is probably worth avoiding for now
While itâs still mostly functional, I think the page has fallen just enough out of date that itâs best to avoid using.
- The âSelect Featureâ dropdown doesnât have much by way of new features. Nothing I was trying to use it for was there: scroll-driven animations, anchor positioning, etc.
- The data seems weirdly wrong. Try the CSS selector
:has()
â it lists no support in any browser. Thattext-decoration-skip-ink
chart above? Thatâs also kinda wrong. The MDN chart is much more nuanced, listing support by sub-feature, and accurate. - It gives you invalid HTML, with nested
<p>
tags. - It doesnât link out to a useful canonical source for the specific data.
Itâs a cool idea and it could be fixed up, but itâs pretty busted for right now.
Using Baseline
Google has been working on Baseline for years now. Itâs a bit of a simplified version of understanding browser support. Theyâve just recently released a web component (web-platform-dx/baseline-status
) for displaying the Baseline widget wherever.
Here is their example usage:
<script src="https://cdn.jsdelivr.net/npm/baseline-status@1.0.4/baseline-status.min.js" type="module"></script>
<baseline-status featureId="anchor-positioning"></baseline-status>
It requires you know what the featureId
is for whatever you want to embed, and it looks like the place to find that information is this folder on GitHub (web-platform-dx/web-features
).
So itâs useful, compact, and up-to-date, itâs also limited to what theyâve got data on at the moment, which ainât everything. I couldnât find the animation-timeline
Iâve been using as an example, for instance.
What Iâd Like to See
Browser support is nuanced, but just a little. If you see a big â next to a scroll-driven animations or view transitions feature, you could be put off it and become sour to the idea of learning about new features too soon. But those features are easily progressive enhancement territory. It doesnât mean donât use it in the same way, say, something like file browser APIs, which directly affect certain apps core experience.
When a feature isnât supported in a browser, I feel itâs very pertinent information to say:
- Not supported, but itâs polyfillable!
- Not supported, but itâs basic progressive enhancement territory!
Iâd love it if these browser support charts/widgets could be more clear about that.
The âWhenâ
Rachel Andrew (rachelandrew.co.uk
)

Thereâs a good number of developers who love to hear about new things landing on the platform. However thereâs a much larger group of people who really just want to do their jobs, and who canât invest time learning new things until they can use the new things. If we publish all of our material when things are experimental or only available in a single browser, all the noise happens at the wrong time. This leads to people missing the fact that things have become available everywhere. So, donât forget to write about the Newly and Widely available things, youâll be speaking to a much bigger audience, and providing people with something they can use in their production sites right away.
I feel like thatâs good advice for this very website. There is plenty to talk about on the web without so much focus on the very newest and most experimental.