Parker(@Parker),
One think I just thought about is it’s not going to look very good on small screens.
So I’d chnage the code above and add a media Query:
.armadilloBlog_1 {
DISPLAY: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.blog-entry {
flex-basis: 100%;
}
@media only screen and (min-width: 600px) {
.blog-entry {
flex-basis: 45%;
}
}
That will be two up on 600px or wider.