vertical alignment code example
Example 1: css vertical align
.top-align {
vertical-align: top;
}
.center-align {
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 css
/*
For a flexed item you can you align - items to center content vertically
you can use justify content to center horizontally
*/
.container {
display: flex;
align-items: center;
justify-content: center;
}