miniflux / v2

Minimalist and opinionated feed reader
https://miniflux.app
Apache License 2.0
6.99k stars 727 forks source link

fix: `<img>` aspect ratio w/ `height: auto` #2730

Closed Pinjasaur closed 4 months ago

Pinjasaur commented 4 months ago

Complement the max-width: 100% with a height: auto to preserve <img> aspect ratios, particularly when it's not wrapped in a block parent e.g. <p> or <figure> most commonly.

Related: https://www.smashingmagazine.com/2020/03/setting-height-width-images-important-again/

An example scenario that this fixes: https://reader.miniflux.app/share/8bd2c1ae6b6577ef9c81106964f9a9e9865edb0d

Before:

image

After:

image

Do you follow the guidelines?