blob: 9f218942380985f0c9dd4d1322e80fa91a93c783 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE HTML>
<title> Ensure block size is same as height of inner div for orthogonal writing mode </title>
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/3973">
<link rel="match" href="div-orthogonal-block-size-ref.html">
<style>
#outer {
inset: 0;
background-color: black;
writing-mode: vertical-rl;
position: absolute;
block-size: min-content;
inline-size: 100px;
border: 5px solid red;
}
</style>
<div id="outer"><div style="block-size: 200px;"></div></div>
|