blob: 9d324e080d5382f7d8a89a3788b6d638b4b75883 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE HTML>
<title> Ensure top takes effect after element is centered </title>
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/3973">
<link rel="match" href="div-auto-margin-top-ref.html">
<style>
#outer {
inset: 0;
background-color: black;
margin: auto;
top: 10px;
position: absolute;
block-size: fit-content;
inline-size: 100px;
border: 5px solid red;
}
</style>
<div id="outer"><div style="block-size: 200px"></div></div>
|