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-min-content-auto-margin-bottom.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<title> Ensure bottom takes effect after element is centered </title>
<link rel="match" href="div-auto-margin-bottom-ref.html">
<style>
#outer {
inset: 0;
background-color: black; margin: auto;
bottom: 10px;
position: absolute;
block-size: min-content;
inline-size: 100px;
border: 5px solid red;
}
</style>
<div id="outer"><div style="block-size: 200px;"></div></div>