1
1

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.

link_to をクリック不可にするz-indexについて

Posted at

初投稿です!!

現在自分はruby言語について学習しており、ポートフォリオ作成の道中で
link_to がクリックできない事態に遭遇したので、
今後の自分用にメモとして記録しておきます。

自分は
CSSプロパティにて
z-index(選択した要素を最前面や再背面に設定するもの)に
ー(マイナス)記号を用いていつも設定していたのですが
それだとlink_toで設定したリンクをクリックすることができなくなってしまいます。

<例>

home.html.erb
     <div class="hoge-index-items">
        <%= link_to("詳細", "/posts/#{post.id}") %>
      </div>

home.scss
     .hoge-index-items{
        z-index: -100;
       ~~0未満の値だと反応しない~~
      }

↓実行結果
スクリーンショット 2019-07-17 14.41.55.png

z-index内の数字を正の数に変更すると、

home.scss
     .hoge-index-items{
        z-index: 2;
       ~~0以上の値だと反応するようになる~~
      }

↓実行結果
スクリーンショット 2019-07-17 14.45.14.png

##まとめ
このことに気付くまでに丸二日ほど掛かってしまいました(笑)
自分の検索能力の無さを痛感しました。

上記のことは同様に HTML 内での aタグ を含んだ設定をする際にも起こるようです。
(参考より)
###参考
aタグのリンクが反応しない

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?