Das CSS, um alle Spalten in Breite gleich zu machen, ist wie folgt

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