LoginSignup
2
3

More than 3 years have passed since last update.

CSSでボタンに影をつけ、クリック時に消す方法

Posted at

CSSでボタンに影をつけ、クリック時に消す

sample.css
.btn {
  /*水平方向の影の長さ、垂直方向の長さ、影の色を指定*/
  box-shadow: 0px 7px #1a7940;
}

/*クリック時のイベントを指定*/
.btn:active {
  /*影をけす*/
  box-shadow: none;
  /*ボタンを下に移動させる=ボタンがクリックされたように見える*/
  position: relative;
  top: 7px;
}
2
3
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
3