Back

Chade Flag Tutorial

This is what goes on HTML:

    <div>
        <div class="blue vertical"></div>
        <div class="yellow vertical"></div>
        <div class="red vertical"></div>
    </div>
    

This is what goes on CSS:

    .vertical {
        width: 75px;
        height: 150px;
        float: left;
    }
    
    .blue {
        background-color: blue;
    }
    .red {
        background-color: red;
    }
    .yellow {
        background-color: yellow;
    }