The beauty of research is finding yourself on a completely unrelated topic mere minutes from opening your browser. It happened to me while writing an Almanac entry on @namespace
, an at-rule that we probably won’t ever use and is often regarded as a legacy piece of CSS. Maybe that’s why there wasn’t a lot of info about it until I found a 2010s post on @namespace
by Divya Manian. The post was incredibly enlightening, but that’s beside the point; what’s important is that in Divya’s blog, there were arrows on the sides to read the previous and next posts:
Don’t ask me why, but without noticing, I somehow clicked the left arrow twice, which led me to a post on “Notes from HTML5 Readiness Hacking.”
What’s HTML 5 Readiness?!
HTML 5 Readiness was a site created by Paul Irish and Divya Manian that showed the browser support for several web features through the lens of a rainbow of colors. The features were considered (at the time) state-of-the-art or bleeding-edge stuff, such as media queries, transitions, video and audio tags, etc. As each browser supported a feature, a section of the rainbow would be added.
I think it worked from 2010 to 2013, although it showed browser support data from 2008. I can’t describe how nostalgic it made me feel; it reminded me of simpler times when even SVGs weren’t fully supported. What almost made me shed a tear was thinking that, if this tool was updated today, all of the features would be colored in a full rainbow.
A new web readiness
It got me thinking: there are so many new features coming to CSS (many that haven’t shipped to any browser) that there could be a new HTML5 Readiness with all of them. That’s why I set myself to do exactly that last weekend, a Web Readiness 2025 that holds each of the features coming to HTML and CSS I am most excited about.
You can visit it at webreadiness.com!
Right now, it looks kinda empty, but as time goes we will hopefully see how the rainbow grows:
Even though it was a weekend project, I took the opportunity to dip my toes into a couple of things I wanted to learn. Below are also some snippets I think are worth sharing.
The data is sourced from Baseline
My first thought was to mod the <baseline-status>
web component made by the Chrome team because I have been wanting to use it since it came out. In short, it lets you embed the support data for a web feature directly into your blog. Not long ago, in fact, Geoff added it as a WordPress block in CSS-Tricks, which has been super useful while writing the Almanac:
However, I immediately realized that using the <baseline-status>
would be needlessly laborious, so I instead pulled the data from the Web Features API — https://api.webstatus.dev/v1/features/
— and displayed it myself. You can find all the available features in the GitHub repo.
Each ray is a web component
Another feature I have been wanting to learn more about was Web Components, and since Geoff recently published his notes on Scott Jehl’s course Web Components Demystified, I thought it was the perfect chance. In this case, each ray would be a web component with a simple live cycle:
- Get instantiated.
- Read the feature ID from a
data-feature
attribute. - Fetch its data from the Web Features API.
- Display its support as a list.
Said and done! The simplified version of that code looks something like the following:
class BaselineRay extends HTMLElement {
constructor() {
super();
}
static get observedAttributes() {
return ["data-feature"];
}
attributeChangedCallback(property, oldValue, newValue) {
if (oldValue !== newValue) {
this[property] = newValue;
}
}
async #fetchFeature(endpoint, featureID) {
// Fetch Feature Function
}
async connectedCallback() {
// Call fetchFeature and Output List
}
}
customElements.define("baseline-ray", BaselineRay);
Animations with the Web Animation API
I must admit, I am not too design-savvy (I hope it isn’t that obvious), so what I lacked in design, I made up with some animations. When the page initially loads, a welcome animation is easily achieved with a couple of timed keyframes. However, the animation between the rainbow and list layouts is a little more involved since it depends on the user’s input, so we have to trigger them with JavaScript.
At first, I thought it would be easier to do them with Same-Document View Transitions, but I found myself battling with the browser’s default transitions and the lack of good documentation beyond Chrome’s posts. That’s why I decided on the Web Animation API, which lets you trigger transitions in a declarative manner.
sibling-index()
and sibling-count()
A while ago, I wrote about the sibling-index()
and sibling-count()
functions. As their names imply, they return the current index of an element among its sibling, and the total amount of siblings, respectively. While Chrome announced its intent to ship both functions, I know it will be a while until they reach baseline support, but I still needed them to rotate and move each ray.
In that same post, I talked about three options to polyfill each function. The first two were CSS-only, but this time I took the simplest JavaScript way which observes the number of rays and adds custom properties with its index and total count. Sure, it’s a bit overkill since the amount of rays doesn’t change, but pretty easy to implement:
const elements = document.querySelector(".rays");
const updateCustomProperties = () => {
let index = 0;
for (let element of elements.children) {
element.style.setProperty("--sibling-index", index);
index++;
}
elements.style.setProperty("--sibling-count", elements.children.length - 1);
};
updateCustomProperties();
const observer = new MutationObserver(updateCustomProperties);
const config = {attributes: false, childList: true, subtree: false};
observer.observe(elements, config);
With this, I could position each ray in a 180-degree range:
baseline-ray ul{
--position: calc(180 / var(--sibling-count) * var(--sibling-index) - 90);
--rotation: calc(var(--position) * 1deg);
transform: translateX(-50%) rotate(var(--rotation)) translateY(var(--ray-separation));
transform-origin: bottom center;
}
The selection is JavaScript-less
In the browser captions, if you hover over a specific browser, that browser’s color will pop out more in the rainbow while the rest becomes a little transparent. Since in my HTML, the caption element isn’t anyway near the rainbow (as a parent or a sibling), I thought I would need JavaScript for the task, but then I remembered I could simply use the :has()
selector.
It works by detecting whenever the closest parent of both elements (it could be <section>
, <main>
, or the whole <body>
) has a .caption
item with a :hover
pseudo-class. Once detected, we increase the size of each ray section of the same browser, while decreasing the opacity of the rest of the ray sections.
What’s next?!
What’s left now is to wait! I hope people can visit the page from time to time and see how the rainbow grows. Like the original HTML 5 Readiness page, I also want to take a snapshot at the end of the year to see how it looks until each feature is fully supported. Hopefully, it won’t take long, especially seeing the browser’s effort to ship things faster and improve interoperability.
Also, let me know if you think a feature is missing! I tried my best to pick exciting features without baseline support.
A New “Web” Readiness Report