I\'d like to have the html below showing in n equal columns whether there are two, or three, or more child elements to the row element using css grid - Flexbox makes this ea
@Michael_B's answer is almost there.
.grid-container { display: grid; grid-auto-columns: 1fr; grid-auto-flow: column; }
Gives you one row of equally sized columns in Chrome, Firefox, and Safari as of writing.