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 1 year has passed since last update.

aタグのクリック領域を要素全体に広げる

Last updated at Posted at 2022-06-29
TailWindCSS
<div class="relative"> <!-- 対象の親要素 -->
    <a class="absolute top-0 left-0 w-full h-full cursor-pointer"></a>
    <div>...</div>
</div>
plane CSS
<div style="position:relative;"> <!-- 対象の親要素 -->
    <a style="position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer;"></a>
    <div>...</div>
</div>
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?