aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/css-tests/css-ui-3_dev/xhtml1print/reference/box-sizing-border-box-004-ref.xht
blob: 797a41744081ffd5f95a8e47b02175045832989b (plain) (blame)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  <title>CSS Reference: Box Sizing - Border-Box with min/max width/height</title>
  <style type="text/css">
    @page { font: italic 8pt sans-serif; color: gray;
            margin: 7%;
            counter-increment: page;
            @top-left { content: "CSS Basic User Interface Module Level 3 CR Test Suite"; }
            @top-right { content: "Test box-sizing-border-box-004-ref"; }
            @bottom-right { content: counter(page); }
          }
</style>
  <link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" />
  <style type="text/css"><![CDATA[
    .container {
      min-width: 500px;
      max-width: 700px;
      min-height: 70px;
      max-height: 90px;
      border: 2px solid black;
      position: absolute;
      left: 25px;
      top: 25px;
      background-color: red;
    }

    .box-sized {
      min-width: 240px;
      max-width: 340px;
      min-height: 60px;
      max-height: 80px;
      z-index: 1;
      float: left;
      border: 5px solid black;
    }

    #one {
      background-color: green;
    }

    #two {
      background-color: blue;
    }
  ]]></style>
 </head>
 <body>
   The two divs should be side-by-side, not one on top of another. No red should be visible.
   <br />
   <div class="container">
     <div class="box-sized" id="one">LEFT HALF</div>
     <div class="box-sized" id="two">RIGHT HALF</div>
   </div>
 </body>
</html>