blob: efe3d49f4c8e51e9a4d5c0354cf8a35678658f06 (
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
|
<!DOCTYPE html>
<link rel="help"
href="https://drafts.csswg.org/css-sizing-3/#valdef-width-fit-content-length-percentage">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht" />
<meta name="assert"
content="max-width: fit-content works when there is no definite available size. Chrome 105 treated fit-content as min-content in this scenario.">
<style>
#reference-overlapped-red {
position: absolute;
background-color: red;
width: 100px;
height: 100px;
z-index: -1;
}
.word {
float: left;
width: 50px;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.
</p>
<div id="reference-overlapped-red"></div>
<div style="width: 100px;">
<div style="float: left; height: 100px; background: green;">
<div style="max-width: fit-content;">
<div class="word"></div>
<div class="word"></div>
<div class="word"></div>
</div>
</div>
</div>
|