|
|
|
|
|
by Kalabasa
847 days ago
|
|
> hide all sections and shows the one that matches the hash 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;
}
|
|