aboutsummaryrefslogtreecommitdiff
path: root/test/html/render/margin-rounding.ref.html
blob: fbc9419bf31d8b7b4d32f43363a99ea64bb4dad5 (plain)
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
28
29
30
31
32
<!DOCTYPE html>
<html>
  <head>
    <title>Test margin rounding</title>
    <style type="text/css">
      .container {
        width: 205px;
      }

      .left, .right {
        width: 100px;
        height: 100px;
        background-color: orchid;
      }

      .left {
        float: left;
        margin-right: 5px;
      }

      .right {
        float: right;
      }
        </style>
    </head>
    <body>
      <div class="container">
        <div class="left"></div>
        <div class="right"></div>
      </div>
    </body>
</html>