Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Colspan problem Reply To: [Solved] Colspan problem

#176025
TheDutchCoder
Participant

I agree with @Paulie_D about using more cells/columns, but if you implement my changes, things will at least line up.

E.g.:

.information_table {
  table-layout: fixed;
}

.information_table td:first-child {
  width: 50%;
}

And remove the extra table row in your HTML, as well as the colspans.