LoginSignup
1
0

More than 5 years have passed since last update.

Android 4.4より前のバージョン メモ

Last updated at Posted at 2017-03-09

■グラデーション

古いAndroidで背景の指定はベンダープレフィックスが必要4.4〜からは要らない(-webkit-)

a {
    &.cartBtn {
        background: -webkit-linear-gradient(#fdb80d, #f87101);
        background: linear-gradient(#fdb80d, #f87101);
     border: 1px solid #feae10;
    }
    &.teikiBtn {
        background: -webkit-linear-gradient(#0faf04, #0c7f03);
        background: linear-gradient(#0faf04, #0c7f03);
        border: 1px solid #0fa403;
    }
    &.active {
        background: -webkit-linear-gradient(#0dc0e3,#04a7e4);
        background: linear-gradient(#0dc0e3,#04a7e4);
        border: 1px solid #04a7e4;
    }
}

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