Надеялся, что кто-нибудь сможет показать мне, как заставить "элемент сетки" 1 и 2 быть рядом друг с другом, занимая по 50% каждый, а затем "элемент сетки" 3, чтобы оказаться в строке ниже с шириной 100%:
.grid-items {
display: flex;
flex-flow: row wrap;
background-color: DodgerBlue;
}
.grid-items > div {
background-color: #f1f1f1;
width: 100px;
margin: 10px;
text-align: center;
line-height: 75px;
font-size: 30px;
}
.grid-item {
flex: 1 50%;
padding: 0 50px 40px;
box-sizing: border-box;
min-height: 650px;
position: relative;
overflow: hidden;
flex-direction: column;
justify-content: center;
display: flex;
text-align: center;
}
.grid-item-wide {
flex: 1 100%;
min-height: 575px;
padding-bottom: 20px;
}
<!DOCTYPE html>
<html>
<body>
<h1>Flexible Boxes</h1>
<div class="grid-items">
<div class="grid-item">1</div>
<div class="grid-item">2</div>
<div class="grid-item" class="grid-item-wide">3</div>
</div>
</body>
</html>