Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-sizing/fit-content-contribution-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="help"
<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>