TAG
CSS
Result
Run
License
<div class="wrapper"> <div>A</div> <div>HELLO</div> <div>C</div> <div>CSS</div> </div>
.wrapper { width: 200px; height: 100px; display: grid; grid: auto / auto auto auto; border: 1px solid #CCC; justify-items: stretch; } .wrapper > div { background-color: #80e1f2; } .wrapper > div:nth-child(2n) { background-color: #f9ee9a; }
Console
expand_less
License
License
by DevDic
Close