LoginSignup
4
7

More than 3 years have passed since last update.

リンクを親要素いっぱいに広げる方法

Posted at

リンクを親要素いっぱいに広げるには

自分が忘れないように、メモとして書き残します。

[HTML]

<div class="linkbox">
  <a href="#"></a>

</div>

[CSS]

.linkbox{
  width:300px;
  height:300px;
  position: relative;
}

.linkbox a{
  display: block;
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

以上です。
割と簡単。

4
7
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
4
7