I'm currently trying to emulate the flexbox space-between layout using the table model. Basically, I have a table that is set to 100% the width of it's container, cells that have a fixed pixel width and I would like the border-spacing to "fill" the space remaining. So far, setting the table's width to 100% overrides the fixed width of the cells and this is not what I want. Is this even possible?
I'd obviously prefer to use a true flexbox to do this, but the project I'm working on must work on older versions of IE so that is not an option.
Thanks for your time.