Answers for "vertical text bottom to top 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
6

text align css

p{
    text-align:center;/*values: center, left, right, etc...*/
}
Posted by: Guest on February-23-2020

Browse Popular Code Answers by Language