.rainbow {
display: flex;
justify-content: center;
}
.red {
background-color: red;
width: 50px;
height: 50px;
}
.orange {
background-color: orange;
width: 50px;
height: 50px;
}
.yellow {
background-color: yellow;
width: 50px;
height: 50px;
}
.green {
background-color: green;
width: 50px;
height: 50px;
}
.blue {
background-color: blue;
width: 50px;
height: 50px;
}
.indigo {
background-color: indigo;
width: 50px;
height: 50px;
}
.violet {
background-color: violet;
width: 50px;
height: 50px;
}
Comments
Post a Comment