Day 151
Starting the CSS for the CSS Grid
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
h1, h3, p {
text-align: center;
}
#div2 {
margin: 0 auto;
max-width: 960px;
}
.photo {
width: 10rem;
height: 10rem;
}
section {
max-width: 960px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 1rem;
}
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
h1, h3, p {
text-align: center;
}
#div2 {
margin: 0 auto;
max-width: 960px;
}
.photo {
width: 10rem;
height: 10rem;
}
section {
max-width: 960px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 1rem;
}
Comments
Post a Comment