summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-sizing/div-max-content-orthogonal-auto-margin-right.tentative.html
blob: 4b63a3a796efd44f8700cfcffef0ed99e9ddf1a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE HTML>
<title> Ensure right takes effect after element is centered for orthogonal writing mode </title>
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/3973">
<link rel="match" href="div-orthogonal-auto-margin-right-ref.html">
<style>
  #outer {
    inset: 0;
    background-color: black;
    writing-mode: vertical-rl;
    margin: auto;
    right: 10px;
    position: absolute;
    block-size: max-content;
    inline-size: 100px;
    border: 5px solid red;
  }
</style>
<div id="outer"><div style="block-size: 200px;"></div></div>