Answer the folowing question.
1. A series of boxes aligned downward.
2.A series of boxes arranged in line.
Answers
Answered by
0
Answer:
box {
display: grid;
width: 540px;
grid-template-columns: 120px 120px 120px;
align-items: start;
justify-content: space-between;
}
.box :first-child {
align-self: center;
}
Similar questions