Next.js Discord

Discord Forum

how do i make a <href> tag go to a component

Answered
Pink salmon posted this in #help-forum
Open in Discord
Original message was deleted.
Answered by joulev
<div id="foo"> – can be div or any tags

Then

<a href="#foo">

Clicking that <a> will scroll to the div
View full answer

14 Replies

Pink salmon
ANCHOR LINKS
thats what its called
Yeah just use <a>. <Link> from next/link also works, but it’s not necessary
putting the id in the href works???
i couldnt get it to work
<div id="foo"> – can be div or any tags

Then

<a href="#foo">

Clicking that <a> will scroll to the div
Answer
Pink salmon
let me test this
holu
p
Pink salmon
holy shit it works
i couldnt get it to work cause i forgot the # before the id
tysm @joulev
@Pink salmon holy shit it works
American
in global.css
body{
scroll-behavior: smooth;
}