Jump to content

CSS Center


sseeley

Recommended Posts

I am trying to create a CSS menu bar, I have been using the 'position:absolute;' and then specifying the x and y to place the object.  However I really would like to just have the bar center on the webpage but I cannot find out how to do it.  Can anyone help me at all?

 

Many thanks in advance

Link to comment
Share on other sites

First, lose any "position:absolute" elements, they will not help you in the least.

 

Next, you must specify a width in px or percentage or it doesn't work. For centering it is usually just "margin:0 auto". But you want 50px top margin so (I use 500px for example):

<style>
#menuBar {
    width: 500px;
    margin:50px auto 0 auto;
}
</style>
<body>
<div id="menuBar">Your content here</div>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.