Equal width columns in CSS Grid

后端 未结 7 1264
别跟我提以往
别跟我提以往 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 11:02

    Define this on your grid container. Sets up three columns of equal width.

    grid-template-columns: repeat(3, 1fr);
    

提交回复
热议问题