forked from w3c/csswg-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
absolute_length_units.html
78 lines (56 loc) · 2.09 KB
/
absolute_length_units.html
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<!-- Submitted from TestTWF Paris -->
<head>
<title>CSS Values and Units Test: elements should be the real world size given in mm, cm, inches...</title>
<meta name="assert" content="elements are not displayed with the real world size units they should be, when specified in millimeters, centimeters, inches, ...">
<link rel="author" title="Marc Bourlon" href="mailto:[email protected]">
<link rel="help" href="http://www.w3.org/TR/css3-values/#viewport-relative-lengths" title="5.1.2. Viewport-percentage lengths: the 'vw', 'vh', 'vmin', 'vmax' units">
<style type="text/css">
* { margin: 0; padding: 0; font-family: Arial, Helvetica, sans-serif; font-size: 13px; }
.s1mm { background: #F00; width: 1mm; height: 1mm; }
.s10mm { background: #66F; width: 10mm; height: 10mm; }
.s1cm { background: #E90; width: 1cm; height: 1cm; }
.s254cm { background: #D0D; width: 2.54cm; height: 2.54cm; }
.s1in { background: #00F; width: 1in; height: 1in; }
.inline { float: left; }
.newline { clear: left; }
p { clear: both; margin: 10px 0; }
</style>
</head>
<body>
<p>
This should be 1mm (width) by 1mm (height) size
</p>
<div class="s1mm"></div>
<p>
This is 10 1mm x 1mm divs, so it should be 10mm (width) by 1mm (height) size
</p>
<div class="s1mm newline inline"></div>
<div class="s1mm inline"></div>
<div class="s1mm inline"></div>
<div class="s1mm inline"></div>
<div class="s1mm inline"></div>
<div class="s1mm inline"></div>
<div class="s1mm inline"></div>
<div class="s1mm inline"></div>
<div class="s1mm inline"></div>
<div class="s1mm inline"></div>
<p>
This should be 10mm (width) by 10mm (height) size.
</p>
<div class="s10mm newline "></div>
<p>
This should be 1cm (width) by 1cm (height) size. So, same width as the line above.
</p>
<div class="s1cm newline "></div>
<p>
This should be 2.54cm (width) by 2.54cm (height) size.
</p>
<div class="s254cm newline "></div>
<p>
This should be 1in (width) by 1in (height) size. So, same size as above.
</p>
<div class="s1in"></div>
</body>
</html>