grid item auto stretch

Hi guys, I want the height of grid item fit-content but it auto stretch. I use align-self: start for grid item but it does not work. Can anyone help me explain why? Here is my css container
.container{
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 5px;
flex: 1;
}
.container{
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 5px;
flex: 1;
}
No description
6 Replies
clevermissfox
clevermissfox5w ago
I would recommend putting all your html/css/js into a codepen so someone can better help you debug. Also explain the behaviour youre looking for, you want it to fit content but you also want it to stretch? thats not possible with one element.
ἔρως
ἔρως5w ago
also, flex: 1 wont do what you expect
snxxwyy
snxxwyy5w ago
if i understand correctly, i'm pretty sure you have to give your "cards" a height of 100% if they're not the direct children on that grid. Otherwise align-items: stretch; can't access them, only their containers.
b1mind
b1mind5w ago
align-self will make them dense not stretch. start is also default so really I don't see why you used it in this case. also grid children fill by default so
b1mind
b1mind5w ago
had the screenshot up and noticed you made all the children flex col too 🤦‍♂️ ... use grid. Flex makes children dense by default too flex col is 90% of the time not what you want... I don't see why people over use it so much when you could just use grid (updated my pen)
Want results from more Discord servers?
Add your server