Skip to content Skip to sidebar Skip to footer

How Do I Get My
  • Centered In My Nav
  • How do I get my
  • centered on my screen. I thought it would work with margin: 0 auto; but it’s not working.
  • Solution 1:

    Add this code:

    .ul_center{
        text-align: center;
    }
    

    So all you need to do is replace the margin with text-align and you should be good.

    Solution 2:

    Margin: auto only works if you specify a width to the element

    I create this jsfiddle for you ;) to show you the result :

    .ul_center{
        margin: 0 auto;
        width: 200px;
    }
    

    Post a Comment for "How Do I Get My
  • Centered In My Nav"