I'm trying to position pseudo-elements, as should be possible according to the specification, on a grid. This works great for my outer layout which I have set on the <body>
, but it doesn't work for the <header>
which itself is a grid.
How can I position the header nav:after
element in the right column of the grid? Why doesn't it work in my example?
I appreciate any help! Here is the code:
body {
display: grid;
grid-template-columns: 1fr 800px 1fr;
}
header {
grid-column: 1 / 4;
grid-row: 1;
display: grid;
grid-template-columns: 1fr 800px 1fr;
}
/* Works great */
header:before {
content: 'Left';
grid-column: 1 / 2;
}
/* Doesn't work, treated as a child element */
header nav:after {
content: 'Right';
grid-column: 3 / 4;
}
header nav {
grid-column: 2 / 3;
}
<body>
<header>
<nav>
<ul>
<li><a href='#'>Link</a></li>
<li><a href='#'>Link</a></li>
<li><a href='#'>Link</a></li>
</ul>
</nav>
</header>
</body>
Thank you!
nav:after
is a child element ofnav
. So make yournav
a grid too - its not at the moment.Or you can use
header:after
instead ofnav:after
- see demo below: