Answers for "can we use display flex on table?"

CSS
0

css table flex

header, .row {
  display: flex;  /* aligns all child elements (flex items) in a row */
}

.col {
  flex: 1;        /* distributes space on the line equally among items */
}
Posted by: Guest on October-28-2021

Code answers related to "can we use display flex on table?"

Browse Popular Code Answers by Language