Home › Forums › CSS › Centering a nav element in a div. › Re: Centering a nav element in a div.
December 30, 2012 at 8:39 am
#119377
Participant
This wouldn’t be what you’re trying to achieve by chance?
http://codepen.io/AaronCDR/pen/KbJyG
If you haven’t defined a width on the menu, setting it to `display: table;` with `margin: 0 auto;` should centre it within the parent element.
Edit – just noticed you have defined a width, in which case @David_Leitch is correct with `display: block;`.