<div class="wrapper">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
</div>
|
.wrapper {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-auto-rows: 100px;
grid-gap: 10px;
}
|
div:nth-child(4n+1) {
grid-column-end: span 2;
grid-row-end: span 2;
background-color: blue;
}
div:nth-child(2) {
grid-column: 3;
grid-row: 2 / 4;
}
div:nth-child(5) {
grid-column: 1 / 3;
grid-row: 1 / 3;
}
|
Les algorithmes utilisés sont très sensibles aux configurations.
Ce n'est pas simple.
Devenez un expert : lisez la suite.
Exemple
en savoir plus !