I want to mimic this pattern (over and over):
So I wrote grid-template-columns: 65% 35% for the first row. Yet, I want to do grid-template-columns: 65% 35% for a second row (and the fourth, and the sixth and so on), but I'm not sure how can I do that while maintaining 65% and 35%.
#parent {
display: grid;
grid-template-columns: 60% 40%;
grid-gap: 24px;
}
.child {
height: 50px;
background-color: #DDD;
}
<div id="parent">
<div class="child"></div>
<div class="child"></div>
<div class="child"></div>
<div class="child"></div>
</div>

