CSS, чтобы все столбцы были равны по ширине, следующие

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