Back

Thai flag tutorial

This is what goes on HTML:

    <div class="horizontalStyle"> 
        <div class="red horizontal"></div>
        <div class="white horizontal"></div>
        <div class="blue horizontal"></div>
        <div class="white horizontal"></div>
        <div class="red horizontal"></div>
    </div>
    

This is what goes on CSS:

    .horizontalStyle {
        display: flex;
        flex-direction: column;
    }
    
    .thaiFlag {
      width: 225px;
      height: 30px;
    }
    
    .white {
        background-color: white;
    }
    .blue {
        background-color: blue;
    }
    .red {
        background-color: red;
    }