mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-29 09:42:38 +00:00
Use actual width in image processing examples
The image processing examples are rendered within containers with a 'nested-img' parent CSS class, which by default makes images responsive by resizing them to the size of their containers. That doesn't work well for the examples as the small images end up stretched. Since there can be other images in the same 'nested-img' context, we keep that class in the parent and set the example images width to auto, such that they will render with their actual size. On small screens, larger images will still be sized down via the max-width property. Fixes #812
This commit is contained in:
committed by
Bjørn Erik Pedersen
parent
6c88ab2da9
commit
de7ab636bc
@@ -12,7 +12,7 @@
|
||||
{{ end }}
|
||||
{{ $image := .Scratch.Get "image" }}
|
||||
<figure style="padding: 0.25rem; margin: 2rem 0; background-color: #cccc">
|
||||
<img style="max-width: 100%; height: auto;" src="{{ $image.RelPermalink }}" width="{{ $image.Width }}" height="{{ $image.Height }}">
|
||||
<img style="max-width: 100%; width: auto; height: auto;" src="{{ $image.RelPermalink }}" width="{{ $image.Width }}" height="{{ $image.Height }}">
|
||||
<figcaption>
|
||||
<small>
|
||||
{{ with .Inner }}
|
||||
|
||||
Reference in New Issue
Block a user