Answers for "flex 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

Browse Popular Code Answers by Language