Vertical text

By setting width and break-word we can make simple vertical text.
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <style>
      p span {
        display:block;
        width:8px;
        border:1px solid black;
        text-align:center;
        padding:5px;
        word-wrap:break-word;
      }
    </style>
  </head>
  <body>
    <p>
      <span>vertical-text</span>
    </p>
  </body>
</html>

Responses

0 Replies