LoginSignup
2
2

More than 5 years have passed since last update.

Bootstrap4のフォームに立体感をつける方法【備忘録】

Posted at

動機

テーブルとフォームに対してBootstrapを適用させたが区別がつきにくかったので、陰をつけたら見やすいかなと思った。

変更前

Screen Shot 2019-02-15 at 17.07.47.png

変更後

Screen Shot 2019-02-15 at 17.08.40.png

書くコード

.form-control{
  -webkit-border-radius: 2px; 
  -moz-border-radius: 2px;
  -moz-box-shadow: inset 1px 1px 3px rgba(0,0,0,0.1);
  -webkit-box-shadow: inset 1px 1px 3px rgba(0,0,0,0.1);
  -o-box-shadow: inset 1px 1px 3px rgba(0,0,0,0.1);
  -ms-box-shadow: inset 1px 1px 3px rgba(0,0,0,0.1);
}

まあサイトをInspectして、コピペしただけなんですけどね。w

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