i have a 100% width table with 3 columns. The center column must be 600px width. How can I have the other two equal width while using up the remaining space?
The use of "colgroup" tag could be a great help for this.
First Column
Third Column
AAAAAA
BBBB
CCCCC
AAAAAA
BBBB
CCCCC
AAAAAA
BBBB
CCCCC
.fixed-center-table {
table-layout: fixed;
width: 100%;
border-collapse: collapse;
}
.fixed-center-table td{
text-align: center;
}
col#middle-column {
width: 600px;
}