Home › Forums › CSS › [Solved] Colspan problem › Reply To: [Solved] Colspan problem
July 21, 2014 at 8:42 am
#176025
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.