Uniform Auto Items Height In Flexbox
I have a page with a flex box and multiple flex items, flex items represent posts, those posts sometimes have large titles and sometimes small ones resulting in a non uniform heigh
Solution 1:
The main problem here is the parent element of the post
, the link that wraps it.
If you give it display: flex
it will work
.post-containter > a {
display: flex;
}
Post a Comment for "Uniform Auto Items Height In Flexbox"