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