1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: Padding-right using centimeters with a minimum plus one value, 1cm</title>
5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#propdef-padding-right">
7 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#padding-properties">
8 <meta name="flags" content="">
9 <meta name="assert" content="The 'padding-right' property handles a minimum plus one length value in centimeters.">
10 <style type="text/css">
11 div
12 {
13 height: 50px;
14 width: 0;
15 }
16 .parent1
17 {
18 background: red;
19 min-width: 37px
20 }
21 .test1, .test2
22 {
23 padding-right: 1cm;
24 }
25 .test1
26 {
27 background: green;
28 }
29 .test2
30 {
31 background: red;
32 }
33 .child1
34 {
35 background: green;
36 position: relative;
37 width: 38px;
38 }
39 </style>
40 </head>
41 <body>
42 <p>Test passes if there is no red visible on the page.</p>
43 <div class="parent1">
44 <div class="test1"></div>
45 </div>
46 <div class="test2">
47 <div class="child1"></div>
48 </div>
49 </body>
50 </html>