summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-sizing/div-max-content-block-size.tentative.html
blob: 8ce4377a0e5ad0e97bad053a69b42d3889b58f6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE HTML>
<title> Ensure block size is same as height of inner div </title>
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/3973">
<link rel="match" href="div-block-size-ref.html">
<style>
  #outer {
    inset: 0;
    background-color: black;
    position: absolute;
    block-size: max-content;
    inline-size: 100px;
    border: 5px solid red;
  }
</style>
<div id="outer"><div style="block-size: 200px;"></div></div>