Michael Swarts
Michael Swarts

Reputation: 3921

How can I center align a div without knowing the width?

I've looked this up and the outlook seems bleak. I'm not interested in using a table. I have 6 or so 'a element' inline-blocks that make up a menu. It's slick, except all the 'a elements' are set to width: auto; to accommodate their text. Without an explicit width, I'm not able to center align them. I have a container div and a child div that wraps around my 'a elements'.

Any thoughts? Thanks Mike

Upvotes: 6

Views: 17992

Answers (8)

Snowalker
Snowalker

Reputation: 309

here a nice workaround for centering a div with no width:

http://www.kensfi.com/how-to-align-center-a-div-with-no-width-declared/

Upvotes: 0

Ross
Ross

Reputation: 46987

My advice is this answer - however someone commented that it wouldn't work in IE6. Here's how to make this work:

<div id="container">
    <div id="centeredBlock">centered</div>
</div>

#container {
    text-align: center;
}

#centeredBlock {
    margin: 0 auto;
    text-align: left;
    width: 50%;
}

Upvotes: 1

User
User

Reputation: 30945

If you need it centered and dynamically shrinking/expanding to accommodate the content without knowing the width, then your only option really is using a table. It is the only elastic element in HTML repertoire.

<table style="margin-left:auto;margin-right:auto;">
    <tr>
        <td>
            Whatever...
        </td>
    </tr>
</table>

P.S. You can have a div to shrink dynamically as well by setting the float property to float:left or float:right. So it will stick to the left or the right, but you can't have it centered this way.

Upvotes: -1

Kerrick
Kerrick

Reputation: 7478

Without setting an explicit width, the <div> tag will automatically expand to 100% of the width of its parent. Therefore, setting margin: 0 auto; will make it center -- with 0px on both the left and right.

Upvotes: 0

Alberto
Alberto

Reputation: 1863

the div element will take all the width space of the container element if it isn't set a width value.

So if you want to center a div you must set a width...

A solution to your problem (if I have understand it) can be:

<div style="text-align:center;"><span>[... yours content ...]</span></div>

where your div has became a span and a new div puts the span in the center. Hope this can help you! Bye, Alberto

Upvotes: 2

Williham Totland
Williham Totland

Reputation: 29009

You need to set margin: 0 auto; on the outer container div, add text-align: center; on the inner div; and use an unordered list to build your menu in the first place.

Upvotes: 0

Sergei Kovalenko
Sergei Kovalenko

Reputation: 1521

<div style="width: auto; margin-left: auto; margin-right: auto">
 div content
</div>

will align center on the page

Upvotes: 3

Philippe Leybaert
Philippe Leybaert

Reputation: 171774

You could set the style of the a element to margin: 0 auto, but that doesn't work in IE6. In IE6, you should set the wrapper div to text-align: center, and (optionally) set the text-alignment for the a element back to text-align: left

Upvotes: 8

Related Questions