Back

Yemen flag tutorial

This is what goes on HTML:

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

This is what goes on CSS:

    .horizontalStyle {
        display: flex;
        flex-direction: column;
    }
    
    .horizontal {
        width: 225px;
        height: 50px;
    }
    
    .red {
        background-color: #CE1126;
    }
    .white {
        background-color: white;
    }
    .black {
      background-color: black;
  }