CSS Test

by mikeskinner

HTML

<div class="container">
    <div class="box-1"> A </div>
    <div class="box-2"> B </div>
    <div class="box-3"> C </div>
</div>

CSS

.container{
   display: flex;
   height: 100vh;
   gap: 25px;
   flex-direction: row;
   justify-content: space-evenly;
}

[class ^="box-"]{
    width: 50px;
    height: 50px;
    background-color: yellow;
    border: 2px solid black;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}