Answers for "how to align content vertically in html"

CSS
8

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>
Posted by: Guest on March-12-2020
11

css vertical align

.top-align {
	vertical-align: top;
}  

.center-align {
  	vertical-align: middle;
}
Posted by: Guest on February-15-2020

Code answers related to "how to align content vertically in html"

Browse Popular Code Answers by Language