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

I have a div that's width is 100%.

I'd like to center a button within it, how might I do this?

<div style="width:100%; height:100%">
     <button type="button">hello</button>
</div>
share|improve this question
what is the code you are using for the button? – David Nguyen Sep 26 '11 at 20:21
I suspect that he wants both vertical and horizontal centering. None of the solutions so far accomplish this. CSS is not very good at vertical centering =(. – mrtsherman Sep 26 '11 at 20:35

5 Answers

If the OP wants verticle and center alignment its quite easy for fixed width and height of the button, try the following

Live Demo

CSS

button{
    height:20px; 
    width:100px; 
    margin: -20px -50px; 
    position:relative;
    top:50%; 
    left:50%;
}

for just horizontal alignment use either

button{
    margin: 0 auto;
}

or

div{
    text-align:center;
}
share|improve this answer

Margin: 0 auto; is the correct answer for horizontal centering only. For centering both ways something like this will work, using jquery:

var cenBtn = function() {
   var W = $(window).width();
   var H = $(window).height();
   var BtnW = insert button width;
   var BtnH = insert button height;
   var LeftOff = (W / 2) - (BtnW / 2);
   var TopOff = (H / 2) - (BtnH /2);
       $("#buttonID").css({left: LeftOff, top: TopOff});
};

$(window).bind("load, resize", cenBtn);
share|improve this answer

et voila:

button {
  width: 100px; // whatever your button's width
  margin: 0 auto; // auto left/right margins
}

Update: If OP is looking for horizontal and vertical centre, this example will do it for a fixed width/height element.

share|improve this answer

With the limited detail provided, I will assume the most simple situation and say you can use text-align: center:

http://jsfiddle.net/pMxty/

share|improve this answer

Supposing div is #div and button is #button:

#div
{
display: table-cell;
width: 100%;
height: 100%;
text-align: center;
vertical-align: center;
}

#button {}

Then nest the button into div as usual.

share|improve this answer

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.