Center ul navigation inside a div?

Hello,

Does anybody know how to center a ul navigation inside a div?

thanks!

be more specific please … what method are you trying to use? if you give it a specified width you can just use

margin: 0 auto;

on the ul, if you’re using

display: inline;

on your lis you use

text-align: center;

the last one solves my problem, thanks