Open
Description
minwiz/src/styles/stylesheet.css
Line 59 in aa80a67
Basically, display:none isn't recommended, it's better to use another technique.
Without using exotic properties like clip
and clip-path
, I have found this to be enough for this case (I'm planning to use it for the john-doe template:
section, section:target ~ section:last-of-type {
height: 0;
overflow: hidden;
}
section:target, section:last-of-type {
height: auto;
overflow: visible;
}
Metadata
Metadata
Assignees
Labels
No labels