Reputation: 14935
max-height
to restrict the size of an image?Both max-width
and max-height
can be used to restrict the size of en element.
This WC article suggests using max-width
to fit the image in its container.
https://www.w3.org/WAI/WCAG21/Techniques/css/C37
Is there any reason not to use max-height
to restrict size of an image should you have a web applicatin with vertical content flow?
https://developer.mozilla.org/en-US/docs/Web/CSS/max-height
https://developer.mozilla.org/en-US/docs/Web/CSS/max-width
Upvotes: 0
Views: 77
Reputation: 35011
max-height vs. max-width : the case for setting max-width
With that being said, it is up to you to determine which to use based on your requirements
Upvotes: 1