This is what goes on HTML:
<div class="horizontalStyle">
<div class="red horizontal"></div>
<div class="blue horizontal"></div>
<div class="yellow horizontal"></div>
</div>
This is what goes on CSS:
.horizontalStyle {
display: flex;
flex-direction: column;
}
.horizontal {
width: 225px;
height: 50px;
}
.red {
background-color: #CE2939;
}
.white {
background-color: #FFFFFF;
}
.green {
background-color: #477050;
}