Skip to content

Instantly share code, notes, and snippets.

@kobitoDevelopment
Created January 30, 2026 07:09
Show Gist options
  • Select an option

  • Save kobitoDevelopment/1179aa2671b75bb8fe3c65af70d2279e to your computer and use it in GitHub Desktop.

Select an option

Save kobitoDevelopment/1179aa2671b75bb8fe3c65af70d2279e to your computer and use it in GitHub Desktop.
.toc {
position: fixed;
top: 0;
left: 0;
z-index: 1;
}
.toc-list {
scroll-target-group: auto;
}
.toc-list .link:target-before {
color: #999;
}
.toc-list .link:target-current {
color: #0066cc;
font-weight: bold;
}
.toc-list .link:target-after {
color: #ccc;
}
.section {
min-height: 100vh;
}
<nav class="toc">
<ol class="toc-list">
<li><a href="#section1" class="link">セクション1</a></li>
<li><a href="#section2" class="link">セクション2</a></li>
<li><a href="#section3" class="link">セクション3</a></li>
<li><a href="#section4" class="link">セクション4</a></li>
</ol>
</nav>
<main>
<section id="section1" class="section">
<h2>セクション1</h2>
</section>
<section id="section2" class="section">
<h2>セクション2</h2>
</section>
<section id="section3" class="section">
<h2>セクション3</h2>
</section>
<section id="section4" class="section">
<h2>セクション4</h2>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment