blob: 2625f847df658b3d6977c65d7de026b5bdda1a6f (
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: right;
width: 200px;
height: 100px;
background: green;
}
#inner {
width: 200px;
height: 100px;
clear: right;
overflow: hidden; /* to establish block formatting context */
background: green;
}
</style>
<div id="outer">
<div id="float"></div>
<div id="inner"></div>
</div>
|