1
2

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.

css3のdropshadowが凄かった!!

Last updated at Posted at 2019-12-01

輪郭に沿って影を付けたかった!

box-shadowは駄目なの??

SVGにbox-shadowを指定すると、想像とは違う出来上がりに:innocent:

スクリーンショット 2019-12-01 20.45.43.png
.icon-location-box {
  width: 100px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.6);
}

dropshadowを使ってみた!

内側にも影が付いた:relaxed:

スクリーンショット 2019-12-01 20.52.13.png
.icon-location {
  width: 100px;
  filter: drop-shadow(10px 10px 10px rgba(0,0,0,0.6));
}

IE11は未対応???

can I useに拠るとIE11は未対応の様です:scream:

またしてもIE11に足止めを食らうのか・・・。

ブラウザの対象範囲に拠っては使い所満載なので凄く良いプロパティだと思います(小並感)

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?