Compassでのグラデーション指定について。 IEについては7〜10まで確認済み。 よくある垂直・2色のグラデーションです。 // SVG指定も出力するように(IE9用) $experimental-support-for-svg: true; // 色を登録しておくよ $bottomColor: #3b5998; $topColor: lighten($bottomColor, 10%); // グラデーションを指定するよ .button { background: $bottomColor; @include background-image(linear-gradient(top, $topColor, $bottomColor)); @include filter-gradient($topColor, $bottomColor, vertical); } .button { b