Make columns of equal width in
前端 未结 3 864
北海茫月
北海茫月 2020-12-05 09:37

How do I make columns of equal width in

?

I am dynamically changing the number of columns. Today I have 13 columns. Tomorrow it will be ra

3条回答
  •  时光说笑
    2020-12-05 09:49

    Use following property same as table and its fully dynamic:

    ul {
        width: 100%;
        display: table;
        table-layout: fixed; /* optional, for equal spacing */
        border-collapse: collapse;
    }
    li {
        display: table-cell;
        text-align: center;
        border: 1px solid pink;
        vertical-align: middle;
    }
    • foo
      foo
    • barbarbarbarbar
    • baz klxjgkldjklg
    • baz
    • baz lds.jklklds

    May be its solve your issue.

提交回复
热议问题