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