2
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 3 years have passed since last update.

CSSのhoverで別の要素を変化させる場合

Last updated at Posted at 2020-11-05

■ はじめに

タイトルについて記事にしました。
この記事で得る内容は以下の通りです。

・CSSの基礎知識が増える
・hoverした要素以外を変化させる方法

■ 例

例えば、2つのクラスがあって、a.categoryにマウスを乗せたら.a.titleに下線を出したいと思った時

スクリーンショット 2020-11-05 13.03.10.png

index.scss
a.category:hover + a.title {
  border-bottom: 1px solid #47b39d;
  }

実際にマウスを乗せるクラス下線を出すクラスの間にプラスでつなぐと

7929cd178e4b95e1a9597121ea08e1d9.gif

この様に、a.categoryにマウスを乗せたら.a.titleに下線を出すことができます

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