(no title)
Kalabasa | 2 years ago
Oh there is a good hack you can do here! I've been meaning to write a blog post about this exact thing!
See CSS `:target` selector
section {
display: none;
}
section:target {
display: block;
}Kalabasa | 2 years ago
Oh there is a good hack you can do here! I've been meaning to write a blog post about this exact thing!
See CSS `:target` selector
section {
display: none;
}
section:target {
display: block;
}
tambourine_man|2 years ago