私は以下のようにグラデーションを適用する関数を持っています:
.linearGradient(@begin: black, @end: white, @switch : 100%) {
background: @begin;
background: -webkit-gradient(linear, 0 0, 0 100%, from(@begin), color-stop(@switch, @end));
background: -moz-linear-gradient(top, @begin, @end @switch);
background: -o-linear-gradient(top, @begin, @end @switch);
background: linear-gradient(top, @begin, @end @switch);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=@top, endColorstr=@bottom,GradientType=0 ); /* IE6-9 */
}
バージョン < IE10 をテストし、フィルターを使用するか、css3 を使用できるようにしたいと考えています。
編集: 追加の質問 ブラウザをテストする方法はありますか?