css text vertical code example
Example 1: css align text vertically
<div class="text">
lorem ipsum
</div>
.text {
vertical-align: middle;
}
Example 2: css text vertical direction
.verticalText {
writing-mode: vertical-lr;
text-orientation: upright;
}
Example 3: vertcial text css
p {
writing-mode: vertical-rl;
text-orientation: upright;
}
Example 4: 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>