Equal width columns in CSS Grid

后端 未结 7 1266
别跟我提以往
别跟我提以往 2020-12-25 10:27

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

7条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-25 10:56

    @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.

提交回复
热议问题