Wrap a list to the right

前端 未结 3 852
执笔经年
执笔经年 2021-02-13 22:24

If i had a list like the following:

  • Alex
  • James
  • Thomas
  • Is
3条回答
  •  自闭症患者
    2021-02-13 22:49

    For modern browsers

    ul{
        -ms-column-count: 2;
        -o-column-count: 2;
        -moz-column-count: 2;
        -khtml-column-count: 2;
        column-count: 2;
        }
    

提交回复
热议问题