1
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 5 years have passed since last update.

HTML の リンク の クリックできる範囲 を 広げる

Last updated at Posted at 2019-07-16

目的

  • HTMLファイルの行間の高さを設定する方法をまとめる。

押さえるポイント

  • リンクを作成するaタグはインライン要素のため文字部分しかクリックできる範囲がない。
  • クリックする範囲を広げるにはaタグをインライン要素からブロック要素に変えてあげる
    ※HTMLでのリンクの作成方法はこちらを参考にしてください。

書き方の例

  • 下記にCSSファイルの内容を記載する。
要素の名前かクラス名 {
  display: block;
}

より具体的な例が思いつかなかったため今回は記載しない。

1
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
1
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?