vote up 0 vote down star

I'm trying to horizontally center a <div> block element on a page and have it set to a minimum width. What is the simplest way to do this? I want the <div> element to be inline with rest of my page. I'll try to draw an example:

page text page text page text page text
page text page text page text page text
               -------
               | div |
               -------
page text page text page text page text
page text page text page text page text
flag

50% accept rate
Added an answer, but misread the CSS part, so deleted it right afterwards. – Zaagmans Mar 6 at 9:02
Please post any solution, CSS or no. – Casey Mar 6 at 9:15
Thanks for phrasing "How do you..." rather than the annoying "How to ..." – ck Mar 6 at 9:19
Sure, but I can't take much credit as I didn't know this was an issue for some. – Casey Mar 6 at 10:18

4 Answers

vote up 6 vote down check

In most browsers this will work...

Stylesheet

div.centre
{
  width: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

HTML

<div class="centre">Some Text</div>

In IE6 you will need to add another outer div...

Stylesheet

div.layout
{
  text-align: center;
}
div.centre
{
  text-align: left;
  width: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

HTML

<div class="layout">
  <div class="centre">Some Text</div>
</div>
link|flag
Yes, due to layout bugs in IE before IE7, you must do this. But in IE8, a simple text-align: center is enough. :) – eriawan Mar 6 at 9:10
That means IE8 is still wrong, as it isn't text. – ck Mar 6 at 9:15
The first solution will work in IE6 if it isn't in quirks mode (activated with a comment/standard XML declaration as the first line of your XHTML document). – Tom Mar 6 at 10:03
I've never actually tried that. So does the browser need to be in strict mode or is it just non-quirks? – Antony Scott Mar 6 at 10:10
@Antony Scott: It needs to be in strict mode (has any doctype declared). – Tom Mar 6 at 10:14
show 2 more comments
vote up 2 vote down
.center {
   margin-left: auto;
   margin-right: auto;
}

Minimum width is not globally supported, but can be implemented using

.divclass {
   min-width: 200px;
}

Then you can set your div to be

<div class="center divclass">stuff in here</div>
link|flag
no luck with 'minimum-width' in Firefox. – Casey Mar 6 at 9:08
I think its called "min-width" – Richard Levasseur Mar 6 at 9:26
updated to min-width – ck Mar 6 at 9:55
vote up 1 vote down
margin: 0 auto;

as ck has said, min-width is not supported by all browsers

link|flag
vote up 1 vote down

minimal answer

stylesheet

div.mydiv {width: 200px; margin:0px auto}

html

<div class="mydiv">

I am in the middle

</div>

Your diagram shows a block level element also (which a div usually is), not an inline one.

of the top of my head, min-width is supported in ff2+/safari3+/ie7+. Can be done for ie6 using hackety css, or a simple bit of JS.

link|flag
Thanks for clarifying about the "inline" terminology. I was trying to say that I didn't want it to float over any text. – Casey Mar 6 at 10:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.