23rd May 2026 - Link Blog
On the <dl> (via) I learned a few new-to-me things about the <dl> element from this article by Ben Meyer:
<dt> can be followed by multiple <dd><dt> and <dd> elements in a <div> for styling - but only a <div>.So this is valid:
<h2 id="credits">Credits</h2> <dl aria-labelledby="credits"> <div> <dt>Author</dt> <dd>Jeffrey Zeldman</dd> <dd>Ethan Marcotte</dd> </div> </dl>
Here's a useful note from Adrian Roselli on screen reader support for description lists.