Forums

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

Home Forums CSS Centering Re: Centering

#63841
SmashDeveloper
Participant

You could use the

or easily make it like this (the recommended way):

HTML



CSS


#nav{
margin: 0 auto;
text-alignment: center;
}

#nav ul, li{
display:inline;
}

#nav ul{
list-style-type: none;
}