Skip to content

Instantly share code, notes, and snippets.

@b4r7
b4r7 / toc.css
Created September 24, 2025 07:03 — forked from kjk/toc.css
Notion-like table of contents in plain JavaScript / CSS
/* http://localhost:9307/a-ytv9/implementing-notion-like-table-of-contents-in-javascript.html */
.toc-wrapper {
position: fixed;
top: 1rem;
right: 1rem;
z-index: 50;
max-height: calc(100vh - 2rem);
overflow-y: auto;