Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-grid/abspos/grid-abspos-staticpos-align-items-center.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<link rel="match" href="grid-abspos-staticpos-align-items-center-ref.html">
<meta name="assert" content="Center of the abspos child should be aligned within the center of the grid's content box when statically positioned and align-items: center in parent.">
<style>
.grid {
display: grid;
border: 1px solid black;
width: 100px;
height: 100px;
align-items: center;
}
.abspos {
position: absolute;
width: 50px;
height: 50px;
background-color: green;
}
</style>
</head>
<body>
<div class="grid">
<div class="abspos"></div>
</div>
</body>
</html>