blob: e8fb14ce46b3c48842f864f4b97eb85f4fe91efb (
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
40
41
|
<!DOCTYPE html>
<title>Bug 1322843 - Intrinsic width with float</title>
<style>
#outer {
width: -moz-fit-content;
width: fit-content;
background: red;
}
#float1 {
float: left;
width: 200px;
height: 100px;
background: green;
}
#float2 {
float: right;
clear: both;
width: 100px;
height: 0px;
}
#float3 {
float: left;
clear: both;
width: 100px;
height: 100px;
background: green;
}
#inner {
clear: right;
overflow: hidden; /* to establish block formatting context */
width: 100px;
height: 100px;
background: green;
}
</style>
<div id="outer">
<div id="float1"></div>
<div id="float2"></div>
<div id="float3"></div>
<div id="inner"></div>
</div>
|