Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS Vertical-align challenge Re: CSS Vertical-align challenge

#117304
Anonymous
Inactive

I guess the question now is what exactly @begetolo is using this for.

If it’s for layout (say something like columns in the footer), and the site is responsive, display: table; would be the clear victor because of the lack of true control over table cells.

If however he is making a static width side and is using this to display content on a page instead of to assemble the layout of said page, I stand by using a table instead of a div with display: table;. It’s truly what the table was designed for.

Thanks for the input @chriscoyier!