vertical align of text in div code example
Example 1: text vertical align css
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style type="text/css">
div {
display: table-cell;
width: 250px;
height: 200px;
vertical-align: middle;
}
</style>
</head>
<body>
<div>Vertically aligned text</div>
</body>
</html>
Example 2: vertical align center text inside div
.center {
height: 309px;
line-height: 309px; /* same as height! */
}
Example 3: vertical align text inside div
text {
line-height: 100px; /*size of parent div*/
}