Answers for "how to align text verticaly"

CSS
-1

how to align text verticaly

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      div {
        display: table-cell;
        width: 250px;
        height: 200px;
        padding: 10px;
        border: 3px dashed #1c87c9;
        vertical-align: middle;
      }
    </style>
  </head>
  <body>
    <div>Vertically aligned text</div>
  </body>
</html>
Posted by: Guest on April-28-2022

Code answers related to "how to align text verticaly"

Browse Popular Code Answers by Language