Note from 18 May 2023

TIL: a:link in CSS doesn't match a elements without any href attribute! 😲

https://codepen.io/nhoizey/pen/dyggeOJ

It makes sense, but I never use a elements without href attributes (different from # of course), so I didn't know… 🤷‍♂️


  1. Do you know good tutorials and/or examples about dealing with responsive images that are fluid horizontaly, but with a fixed height?

    Using object-fit: cover; in the CSS is easy, but how can we prevent loading many pixels that will be hidden, without using too many <source> in a <picture>?