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