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

59

table {
  table-layout: fixed ;
  width: 100% ;
}
td {
  width: 25% ;
}

Comments

Submit
0 Comments