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