RSSAmplifier

Blog

Bram.us

A rather geeky/technical weblog, est. 2001, by Bramus

bram.usRSS feed ↗10 posts

Latest posts

Unlock Immediate Diagonal Scrolling with CSS scroll-axis-lock: none

When you scroll a 2D scroller on a website, the browser does a lot of work behind the scenes to keep you on track. One of the things it typically does is scroll axis-locking (aka “railing”) , ignoring some minor scroll deltas in the non-main scrolling axis. While helpful most of the times, this sometimes can get in the way such as in map or image zoom interfaces. With the new CSS scroll-axis-lock…

MDN Traffic Browser

TIL: MDN exposes up-to-date page view data through https://popularities.mdn.mozilla.net/current.csv . Using Google AI Studio, I generated a visualizer to explore the data.

Styling the Navigation: Declarative Route and Navigation Matching in CSS

One of the things that we at Chrome have been thinking about for a while now is a way to do declarative route and navigation matching in CSS. Together with Noam Rosenthal and David Baron I’ve been working on it for the past few months. After an initial introduction at the CSS Working Group back in January, and a quick feedback session at CSS Day in June, we think we have something that is ready…

What’s new in Web UI (Google I/O 2026)

Mid May, at this year’s Google I/O, Una and I gave a talk “What’s new in Web UI” live at Shoreline in the Chrome tent.

Cranking View Transtions up to 11 (2026.05.07 @ All Day Hey!)

In May I spoke at the 10th (and final 😔) edition All Day Hey! in Leeds, UK. I opened the conference with a talk on View Transitions.

Cranking View Transtions up to 11 (2026.04.28 @ Beyond Tellerrand)

Back in April I went to Beyond Tellerrand in Düsseldorf. I initially planned on going as an attendee, but when organizer Marc asked me to speak I couldn’t say no …

Do Websites Need to Function Exactly the Same on Every Platform?

While we’ve accepted that websites don't need to look the same everywhere, we seem to be stuck on a new hurdle: the idea that websites need to function the same everywhere.

View Transitions: Use the new attr() or match-element for the view-transition-name?

At CSS Day, “YouTube guy” Kevin Powell showed a lot of demos that relied on the advanced attr() function . In one of the examples he used attr() to set view-transition-name values — a technique I covered in my article on advanced attr() function . But then during the Q A, Cyd Stumpel wondered if he couldn’t just use match-element there. The short answer to that question is yes. The longer answer…

Introducing view-transitions-toolkit, a collection of utility functions to more easily work with View Transitions.

In my work with View Transitions over the last several years, I’ve published everything from deep-dive articles, demos, and announcement videos at Google I/O. I’ve also done some more experimental things with it, such as optimizing the keyframes or driving a View Transition by scroll . To turn the lessons from these scattered experiments into something more reusable for both you and me, I’ve…

CSS position: sticky now sticks to the nearest scroller on a per axis basis!

If you’ve ever tried to build a data table with a sticky header and a sticky first column, you know the pain. You’d think a simple position: sticky with top: 0 and left: 0 would be enough, but the reality was that only one of both would stick. A recent change to CSS fixes this: position: sticky now plays nice with single-axis scrollers , allowing you to have sticky elements that track different…