Issue
Flexbox has this behaviour where it stretches images to their natural height. In other words, if I have a flexbox container with a child image, and I resize the width of that image, the height doesn't resize at all and the image gets stretched.
div {
display: flex;
flex-wrap: wrap;
}
img {
width: 50%
}
<div>
<img src="https://i.imgur.com/KAthy7g.jpg" >
<h1>Heading</h1>
<p>Paragraph</p>
</div>
What causes this?
Solution
It is stretching because align-self default value is stretch.
Set align-self to center.
align-self: center;
See documentation here: align-self
Answered By - pradeep1991singh
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.