Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-align/abspos/justify-self-stretch-auto-margins-aspect-ratio.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
<style>
.container {
  position: relative;
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
}
.abspos {
  position: absolute;
  inset: 50px 50px auto 50px;
  margin: 0 auto 0 auto;
  justify-self: stretch;
  background: green;
}
.abspos::before {
  content: '';
  width: 100%;
  min-height: 50px;
  aspect-ratio: 1;
  display: block;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="container">
  <div class="abspos"></div>
</div>