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.
|
I have this form:
How I can center that block (div span5 well) vertically and horizontally? Thank you. | |||||
feedback
|
|
Horizontal centering can be done by adding
Surprisingly (or not), the 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 You may notice in my code below that my
|
| |||
|
feedback
|