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-fixedpos-static-position-not-containing-block.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid: static position of a fixed-positioned child when the grid is not its containing block</title>
<link rel="match" href="grid-fixedpos-static-position-not-containing-block-ref.html">
<link rel="author" title="Kurt Catti-Schmidt" href="mailto:kschmi@microsoft.com">
<style>
.grid {
display: grid;
position: relative;
grid: 50px 50px / 50px 50px;
margin: 40px;
border: 10px solid black;
padding: 20px;
}
.fixed {
position: fixed;
grid-area: 2 / 2;
width: 10px;
height: 10px;
background-color: green;
}
</style>
<div class="grid">
<div class="fixed"></div>
</div>