summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/normal-flow/block-in-inline-align-last-001-ref.html
blob: 340e222f9eaf51fd43efd29b44274e4fe3be6f1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<style>
section {
  width: 10ch;
}
.right {
  text-align: right;
}
</style>
<body>
  <section>
    <div>1234567</div>
    <div class="right">1234567</div>
    <div>1234567</div>
    <div class="right">1234567</div>
    <div>1234567</div>
    <div class="right">1234567</div>
  </section>
</body>