List with equal width columns #1732
Answered
by
smartm0use
smartm0use
asked this question in
Elements (button, image, label, loader, ...)
-
Hello, I'm using horizontal list like this: but I would like to have equal width for every item element, like this: How can I do this without using Here is my playground: https://jsfiddle.net/q6ok4j5e/ |
Beta Was this translation helpful? Give feedback.
Answered by
smartm0use
Nov 2, 2020
Replies: 3 comments 1 reply
Answer selected by
lubber-de
-
Or use the same approach as for form fields (where a .ui.horizontal.list{
display: flex;
}
.ui.horizontal.list .item {
width: 100%;
flex: 1 1 auto;
} |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thank you for your replies. I think using |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Any idea?