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/div-fit-content-orthogonal-block-size.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<title> Ensure block size is same as height of inner div for orthogonal writing mode </title>
<link rel="match" href="div-orthogonal-block-size-ref.html">
<style>
#outer {
inset: 0;
background-color: black;
position: absolute;
block-size: fit-content;
inline-size: 100px;
writing-mode: vertical-rl;
border: 5px solid red;
}
</style>
<div id="outer"><div style="block-size: 200px"></div></div>