LoginSignup
1
0

More than 5 years have passed since last update.

シンプルモダンなデザインのボタンサンプル

Last updated at Posted at 2016-04-04

以下のようなシンプルモダンなデザインのボタンをつくりたいときの
サンプルコードです。
カーソルを合わせた時の色も変化します。

btn.png

  <div id="btn">ボタンを押す</div>
    #btn{
      margin: 30px auto;
      width: 180px;
      border-radius: 5px;
      box-shadow: 0 4px 0 #e91b0c;
      background: #f44336;
      color:#fff;
      cursor: pointer;
      padding: 7px;
    }
    #btn:hover{
      opacity: 0.8;
    }
1
0
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
0