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-self-end-large-border-padding.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<link rel="match" href="grid-abspos-staticpos-align-items-self-end-large-border-padding-ref.html">
<meta name="assert" content="Abspos child of grid is aligned to end of grid content box when statically positioned and align-items: self-end in parent.">
<style>
.grid {
display: grid;
padding: 13px;
padding-bottom: 42px;
border: 23px solid black;
border-bottom-width: 45px;
width: 100px;
height: 100px;
align-items: self-end;
}
.abspos {
position: absolute;
width: 50px;
height: 50px;
background-color: green;
}
</style>
</head>
<body>
<div class="grid">
<div class="abspos"></div>
</div>
</body>
</html>