Open
Description
Here is a workaround, but it implies that the #home section is last in the HTML:
section {
display: none;
position: absolute;
top: 0;
width: 100%;
}
section:target, section#home {
z-index: 1;
display: block;
}
section:target {
z-index:2;
}
section:target ~ section * {
display:none;
}
I'm open to other solutions, because the first page should appear first in the markup.
Metadata
Metadata
Assignees
Labels
No labels