0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[HTML5] ページ内リンクの方法

Posted at

ページ内リンクとは?

同じページ内の特定部分にジャンプするリンクのことです。

ページ内リンクのHTML5記述方法

アンカー要素のid属性で値を指定します。
例えば、以下のようになります。

<a id="about">説明</a>

アンカー要素のhref属性の属性値に先ほど指定したidを # を付けて指定します。

<a href="#about">説明の位置へジャンプします</a>

aタグ以外にも、h1やdivなどの色々な要素でid属性が指定でき、ページ内リンクが作れます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?