LoginSignup
0
0

More than 5 years have passed since last update.

手っ取り早くテキストリンクのクリッカブルエリアを広げる方法

Last updated at Posted at 2018-10-18

スマホでテキストリンクのクリッカブルエリアを広げたい時ありますよね。
大抵これでいけます。状況によってはテキストリンク以外でも使える。

a {
  display: inline-block;
  padding: 10px;
  margin: -10px;
  position: relative;
}

See the Pen expand link area by Syuji Higa (@syuji-higa) on CodePen.

行間が狭いなど、リンク同士が近いときは重なるので調整が必要です。
paddingmargin で相殺してるので、同じ側に反数を入れつつ調整していください。

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