I'm essentially trying to do this : Table with table-layout: fixed; and how to make one column wider
E.G. have an automatically sized column width table where the table is built out of divs not table tds and so on, but where the first column is of fixed width and the rest spread evenly to fill 100%.
Sort of like this :
.intra {
display: table;
table-layout: fixed;
width: 100%;
}
.tit {
width: 90px;
}
.hover {
display: table-cell;
width: auto;
}
except as you can see this does not work:
Thank you for any help you can lend me.