text vertical align in div code example
Example 1: css align text vertically
<div class="text">
lorem ipsum
</div>
.text {
vertical-align: middle;
}
Example 2: 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 3: vertical align center text inside div
.center {
height: 309px;
line-height: 309px;
}
Example 4: align center css
margin: auto;
Example 5: vertical align text inside div
text {
line-height: 100px;
}