Answers for "two not equal size columns css"

CSS
0

The CSS to make all the columns equal in width is as follows

table {
  table-layout: fixed ;
  width: 100% ;
}
td {
  width: 25% ;
}
Posted by: Guest on August-26-2021

Browse Popular Code Answers by Language