blob: 1b59e02f9b88c9bfbb0202e3a0b603c56ba73d72 (
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
33
34
35
36
37
38
39
|
<html>
<head>
<style>
div.crossTop {
height: 100px;
width: 300px;
background-color:green;
display: -moz-box;
display: -webkit-box;
display: box;
-moz-box-align: center;
-webkit-box-align: center;
box-align: center;
-moz-box-orient: horizontal;
-webkit-box-orient: horizontal;
box-orient: horizontal;
}
div.crossBar {
height: 300px;
width: 100px;
background-color:green;
margin-left: 100px;
margin-top: -100px;
}
</style>
</head>
<body>
You should see a green cross below (300 pixels wide and 300 pixels tall). This is a test to ensure that
boxes don't obey the overconstraint correction (margin-top/bottom should not be corrected when a box is
overconstrained).
<div style="padding-top:200px; padding-left:0px">
<div class="crossTop">
<div class="crossBar"></div>
</div>
</div>
</body>
</html>
|