How To Vertical Align A Text?
How to vertically align the text in a floated div? For example: I have a dynamic content with fixed height. if the content is small or big it has to automatically vertically align.
Solution 1:
Table cells are the easiest solution.
Javascript is an alternative (measure the size and text size of the div, then adjust padding, or lineheight, or whatever).
edit: Or this awesome css:
CSS
div#container {
border: solid 1px;
height: 300px;
}
div#content {
border: solid 1px;
}
div#balance {
border: solid 1px;
/* gotta be 100% */height: 100%;
}
div.valign {
/* firefox 2 */display: -moz-inline-box;
/* everybody else */display: inline-block;
vertical-align: middle;
}
/* IE 6 and 7 hack */html* div.valign {
display: inline;
}
HTML
<divid="container"><divid="balance"class="valign"></div><divid="content"class="valign">
Blah blah blah blah<br/>
Blah blah blah blah<br/>
Blah blah blah blah<br/>
Blah blah blah blah<br/>
Blah blah blah blah
</div></div>
Been meaning to make a blog post about this for a while, I think it's time.
Solution 2:
<divstyle="display: table-cell; vertical-align: middle;">I'm in the middle!</div>
Solution 3:
I've come across this problem before. I'll quote the experts so I don't fudge this up: "...internal object is absolutely positioned in half of the area height. Then is moved up by half of its height."
This can be all done with % instead of exact pixels, in case the data is generated from a database and the height varies with each page.
Source: here
Demo: linked on the above page
Here goes my first answer...
Solution 4:
Have you tried vertical-align: middle; ?
Post a Comment for "How To Vertical Align A Text?"