You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I'd like to scroll to the top of the page with the following tag <a href="#"> or <a href="#top">, but there is not smooth animation.
Of course, when I wrote <body id="top"> and with <a href="#top">, it works.
Hi,
I'd like to scroll to the top of the page with the following tag
<a href="#">
or<a href="#top">
, but there is not smooth animation.Of course, when I wrote
<body id="top">
and with<a href="#top">
, it works.According to the specification,
href="#top"
andhref="#"
means to link to the top of the page.cf. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a
So, I suggest that it will work without
<body id="top">
.Thanks.
The text was updated successfully, but these errors were encountered: