A
A
andrey69rus2015-11-21 07:46:11
css
andrey69rus, 2015-11-21 07:46:11

How can I make the images have the same height?

Hello, tell me how to make the pictures have the same height (cropped or slightly distorted, it doesn’t matter)
From the bottom they are all different, you need to align the
a4cee8e257d74907ac5bb19fae59e481.png
css
3e744ba381924abebaa131c998afd46b.png
html
9646ee30cdd54277b3855738b0cc9afb.png

Answer the question

In order to leave comments, you need to log in

4 answer(s)
N
Nicholas, 2015-11-21
@healqq

Either make it overflow:hiddenon the container, or insert it through the background-image with the parameterbackground-size: cover

T
tef, 2015-11-21
@tef

Look at the size variation. If it is very large, then it makes sense to convert them on the server.
And so, insert the picture as a background and set the positioning in the center. More or less like this.

img {
bacground-image: url(картинка.png);
background-position: 50%;
}

There is also background-size: cover. It stretches the background image according to the width and height of the block.

S
Sergey Goryachev, 2015-11-21
@webirus

<div>
<img>
</div>

.div {
width: 200px;
height: 300px;
}
.div img {
width: 100%;
height: 100%;
}

And the lower block with a negative margin.

D
DEFUNK, 2015-11-21
@DEFUNK

.shortstory {
   height: вставь нужную высоту родителя в пикселях;
}

.shortstory img {
   height:100%;
}

Well, fix it in html, add a class before the link
<div class="shortstory">
    <a href="{full-link}">

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question