Forums

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

Home Forums CSS CSS Tabs Re: CSS Tabs

#127927
Merri
Participant

Add this:

.content div {
width: 100%;
}

To center the table you can add style:

.content table {
margin: 0 auto;
}

However I’d use something else than a table to represent that particular information. Centering all text is quite ugly, especially with lists. Alternative would be to move the content more to the center with a percentage width and a minimum width to make sure it stays wide enough.