36 lines
955 B
HTML
36 lines
955 B
HTML
<!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>
|