Back

Draw tutorials

Lithuania Flag

This is what goes on HTML:

    <div class="horizontalStyle">
        <div class="yellow horizontal"></div>
        <div class="green horizontal"></div>
        <div class="red horizontal"></div>
    </div>
    

This is what goes on CSS:

    .horizontalStyle {
        display: flex;
        flex-direction: column;
    }

    .horizontal {
        width: 225px;
        height: 50px;
    }
    
    .yellow {
        background-color: #FFB81C;
    }
    .green {
        background-color: #046A38;
    }
    .red {
        background-color: #BE3A34;
    }