1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27

content / test / data / accessibility / html / fixed-width-text.html [blame]

<html>
<head>
  <style>
    @font-face {
      font-family: 'Ahem';
      src: local('Ahem'),
        url('../../font/Ahem.ttf');
    }

    .fixed-width {
      font-size: 2ch;
      font-family: "Ahem";
      letter-spacing: 1ch;
      position: absolute;
      left: 100px;
      top: 200px;
    }

  </style>
</head>

<body>
  <p class="fixed-width">Hello,
    <br>World
  </p>
</body>
</html>