Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<title>CSS aspect-ratio: fit-content size keyword</title>
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht" />
<style>
div {
background: green;
aspect-ratio: 2/1;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div style="height: 50px; width: fit-content;"></div>
<!-- fit-content in the block axis is treated as auto -->
<div style="height: fit-content; width: 100px;"></div>