Skip to content
Advertisement

CSS Image overflow hidden without stretch

I am trying to reduce the thumbnail’s height without stretching the image. Despite I wrote my code in React I know is pure CSS.

For example, I used a sample screenshot from Wikipedia, its height is too large to fit “in a thumbnail” so I need to reduce it so a JavaScript library can autoscroll it when hover event is triggered (but this is a future step).

The following image is how the thumbnail should look like:

Instead it displays the whole image, as you can see below:

JavaScript
JavaScript

So, how can I reduce the image’s height without stretching it or overflowing the a?

Advertisement

Answer

Add display: block; (or inline-block, depending on the situation) to the class of the a tag, otherwise it’s an inline element on which your height setting (and with it the overflow: hidden) won’t have any effect:

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement