Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>
    CSS Reference Case
  </title>
  <style>
    .ib {
      display: inline-block;
    }
  </style>
</head>
<body>
  Test passes if the visible characters below are baseline-aligned.
  <br><br>
  aaa
  <div class="ib">
    bbb
  </div>
  <div class="ib">
    ccc
  </div>
</body>
</html>