Good afternoon, dear advisers.
There is a grid of images. I can not put it right, maybe someone will tell you how to approach the task? This is what happens now: http://codepen.io/shugich/pen/MejMQw
section { width: 1000px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; } div { width: 490px; height: 450px; background: #000; color: #fff; display: flex; justify-content: center; align-items: center; font-size: 50px; font-weight: bold; font-family: 'Helvetice', 'Arial', sans-serif; margin-bottom: 20px; } .small { height: 215px; } <section> <div>1</div> <div class="small">2</div> <div class="small">3</div> <div class="small">4</div> <div>5</div> <div>6</div> <div>7</div> <div class="small">8</div> <div class="small">9</div> <div class="small">10</div> </section> 