Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question
Added an answer, but misread the CSS part, so deleted it right afterwards. – RuudKok Mar 6 '09 at 9:02
Please post any solution, CSS or no. – Casey Mar 6 '09 at 9:15
3  
Thanks for phrasing "How do you..." rather than the annoying "How to ..." – cjk Mar 6 '09 at 9:19
3  
Sure, but I can't take much credit as I didn't know this was an issue for some. – Casey Mar 6 '09 at 10:18
1  
Check my answer below for a solution for fluid/dinamic sized divs (ie. You don't know the width of your div) – Tivie May 29 '12 at 11:01
show 1 more comment

6 Answers

up vote 92 down vote accepted

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>
share|improve this answer
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 '09 at 9:10
That means IE8 is still wrong, as it isn't text. – cjk Mar 6 '09 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 '09 at 10:03
1  
@Antony Scott: It needs to be in strict mode (has any doctype declared). – Tom Mar 6 '09 at 10:14
10  
Also... only works if you know the width of the container. If the width changes, you have to update your CSS (which stinks if the content is dynamically generated) – BMiner Aug 12 '11 at 14:30
show 5 more comments

In the case of a non-fixed width div (ie. you don't know how much space the div will ocuppy).

<div id="wrapper" style="text-align: center">    
    <div id="yourdiv" style="display: inline-block;">You text</div>
</div>

Tested in the latest chrome (19.0.1084.52), safari 5.1 and firefox 12. I dunno about IE.

NOTE: Keep in mind the width of #yourdiv is dynamic -> it will grow and shrink to accommodate the text inside it.

NOTE2: You can check browser compatibility here -> http://caniuse.com/inline-block

NOTE3: According to some users, it seems it works in latest IE

share|improve this answer
2  
+1: Works in IE for me! – Jim G. Jan 3 at 17:48
margin: 0 auto;

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

share|improve this answer

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.

share|improve this answer
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 '09 at 10:23
.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>
share|improve this answer
no luck with 'minimum-width' in Firefox. – Casey Mar 6 '09 at 9:08
1  
I think its called "min-width" – Richard Levasseur Mar 6 '09 at 9:26
updated to min-width – cjk Mar 6 '09 at 9:55
<div style="text-align: center" align="center">text</div>
share|improve this answer
9  
IE Guy stikes again! – Tim Apr 23 '12 at 16:04
2  
Despite the align="center" that is deprecated, why can't we use text-align ? Instead of just downvote, can anyone plz explain why isn't that a solution ? For the record: the most voted solution didn't work on my case, but text-align: center; did. Please advice. – MEM May 21 '12 at 19:05
5  
text-align: center aligns the text inside the div, not the div itself. If, for instance, your div has a border or a background color, it will occupy all available space horizontally hence it will not be centered per se. – Tivie May 29 '12 at 10:54
@Tivie, this comment was more helpful to me than the accepted answer! Thanks! – AresAvatar Dec 11 '12 at 1:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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