• Имеется макет, который нужно реализовать с помощью Flexbox.Также есть некоторый CSS код. Что в нём нужно подправить?

    @TheSkyLineForce Автор вопроса
    У меня получилось с помощью 9 блоков,
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>Title</title>
        <style>
            .container-1 , .container-2 , .container-3{
                display:flex;
                flex-wrap: wrap;
                padding:10px;
                width: 500px;
                justify-content:flex-start;
            }
            .box-1, .box-3 {
                margin: 10px;
                width:100px;
                height: 100px;
                text-align: center;
                background-color: darkblue;
            }
            .box-4, .box-5, .box-6{
                display: none;
            }
            .box-7, .box-8, .box-9{
                width:100px;
                height: 100px;  
                margin: 10px;
                background-color: darkblue;
            }
            .box-2{
                width:100px;
                height:200px;
                margin:10px;
                background-color: darkblue;
            }
        </style>
    </head>
    <body>
      
        <div class="container-1">
            <div class="box-1"><h3></h3></div>
            <div class="box-2"><h3></h3></div>
            <div class="box-3"><h3></h3></div>
        </div>
        <div class="container-2">
            <div class="box-4"><h3></h3></div>
            <div class="box-5"><h3></h3></div>
            <div class="box-6"><h3></h3></div>
        </div>
        <div class="container-3">
                <div class="box-7"><h3></h3></div>
                <div class="box-8"><h3></h3></div>
                <div class="box-9"><h3></h3></div>
            </div>
    </body>
    </html>
    Это подходит?
    Ответ написан
    Комментировать