[Solved] Flexbox nested elements
After a few tries, I think I got what I was looking for. body { background: skyblue; } a { text-decoration: none; } .wrapper { margin: 2%; } .articles { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; } .article-card { background-color: #FFF; box-shadow: 0 4px 4px -4px rg; } .article-card–big { width: … Read more