CSS: Set divs horizontally in 2 rows

前端 未结 4 731
一向
一向 2021-01-14 09:40

Lets say I have

1
2
4条回答
  •  日久生厌
    2021-01-14 10:17

    There is a CSS property that does exactly that

    http://tinker.io/8ff59

    .cont {
        -webkit-columns: 5em;
        -moz-columns: 5em;
        columns: 5em; /* desired width of column */
    }
    

    http://caniuse.com/#feat=multicolumn

提交回复
热议问题