Right now, I have a set of columns that are styled as display: table-cell
in CSS. Each column has a min-width
of 280px and a max-width
of 360px. The only issue is that I want these columns to be equally-sized. That is, I want the columns to each be as wide as the widest column. I could probably write some javascript that could do this. Is there a way to do this with just CSS though?
I could maybe also use flexbox if that would be any better.