Reverse pagination is a counter–intuitive strategy for attempting to make links immutable/cacheable and bookmark friendly across older pages. I searched for a visual explanation (difficult to explain concisely) and eventually arrived at an old article on paging . Reverse pagination has its gotchas, but then again pagination itself is one big gotcha.. :-) Well, it depends on the use case really.
It’s kinda neat how
CSS animation rules
are sort of simple in their animation-delay
property also allowed delays between iterations/intervals instead of at the
start only. Interval delays could allow for writing drastically less key frame
rules.
text-animation[hang] {
animation: tilt-rightward 1.3s infinite, tilt-leftward 1.8s infinite;
}
The temptation to bring in a bundler is oh so very
great. Deno bundle
is
obviously not designed to bundle js
directly for the browser but you can get
away with it up to a certain point.
If you think about it, the
<abbr>
tag is not that well thought out. Or rather, inconsistent interpretations of the
title attribute on different displays limits <abbr>
usefulness.
Sure, conditional media types allow auto expanding the title on touch or print displays.
But many semantic elements have similar quirks that are only noticeable with a good cross browser/display testing suite, which no one has .
Surprising quirky behaviour +
real world “get it done now” business constraints
=
everything’s a <div>
and/or a <span>
.