I have this form:

<div class="container-fluid">
<div class="span5 well">
<h2>Authentification</h2>
<form method="POST">...</form>
</div>
</div>

How I can center that block (div span5 well) vertically and horizontally? Thank you.

link|improve this question
Within the container or within the body? – Wex Dec 9 '11 at 8:17
Is it correct? At container, if it accessible... – Inga Dec 9 '11 at 8:21
feedback

2 Answers

Horizontal centering can be done by adding margin: 0 auto to an element that has no siblings.

A solution I recently posted here (Vertically aligning my div within the body) details an easy way to vertically center elements either within the body or within other elements.

Just so you don't have to leave this page, here's the solution I posted:

Surprisingly (or not), the vertical-align tool actually works best for this job. Best of all, no Javascript is required.

Vertical align works by aligning the centers of elements that are next to each other. Applying vertical-align to a single element does absolutely nothing. If you add a second element that has no width but is the height of the container, your single element will move to vertically center with this no-width element, thus vertically centering it. The only requirements are that you set both elements to inline (or inline-block), and set their vertical-align attribute to vertical-align: middle.

You may notice in my code below that my <span> tag and <div> tag are touching. Because they are both inline elements, a space will actually add a space between the no-width element and your div, so be sure to leave it out.

In the following example, I am positioning the outer class in the middle of the body, and the inner class in the middle of the outer class.

HTML:

<span></span><div class="outer">
    <span></span><div class="inner">

    </div>
</div>

CSS:

html, body {
    height: 100%;
    margin: 0;
    padding: 0; }
span { 
    height: 100%;
    vertical-align: middle;
    display: inline-block; }
.outer {
    width: 100px;
    height: 200px;
    padding: 0;
    border: 1px solid #000;
    vertical-align: middle;
    display: inline-block; }
.inner {
    background: red;
    width: 30px;
    height: 20px;    
    vertical-align: middle;
    display: inline-block; }

Preview: http://jsfiddle.net/Wexcode/tLkSV/

link|improve this answer
feedback
<style>
.well
{       
    position:absolute;      
    width:200px;    
    height:200px;
    top: 50%;
    left: 50%;
    margin-top:-100px; /* negative number 1/2 height */
    margin-left:-100px; /* negative number 1/2 width */
    outline:1px solid #CCC;
}
</style>

<div class="container-fluid">
<div class="span5 well">
<h2>Authentification</h2>
<form method="POST">...</form>
</div>
</div>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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