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>
|
|
If the OP wants verticle and center alignment its quite easy for fixed width and height of the button, try the following CSS
for just horizontal alignment use either
or
|
||||
|
|
|
Margin: 0 auto; is the correct answer for horizontal centering only. For centering both ways something like this will work, using jquery:
|
|||
|
|
|
et voila:
Update: If OP is looking for horizontal and vertical centre, this example will do it for a fixed width/height element. |
||||
|
|
|
With the limited detail provided, I will assume the most simple situation and say you can use |
|||
|
|
|
Supposing div is #div and button is #button:
Then nest the button into div as usual. |
|||
|
|