下から上に薄い灰色から白へのグラデーションの背景を体に適用することは正しいですか?
body {
background: -webkit-gradient(linear, bottom, top, from(#e7e7e7, to(#ffffff));
}
下から上に薄い灰色から白へのグラデーションの背景を体に適用することは正しいですか?
body {
background: -webkit-gradient(linear, bottom, top, from(#e7e7e7, to(#ffffff));
}
すべての対応ブラウザをサポートするデモ
body {
background-color: #ffffff;
background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#999999));
background-image: -webkit-linear-gradient(top, #ffffff, #999999);
background-image: -moz-linear-gradient(top, #ffffff, #999999);
background-image: -o-linear-gradient(top, #ffffff, #999999);
background-image: linear-gradient(to bottom, #ffffff, #999999);
}
CSS3役に立つかもしれません