用途
新着
履歴
分類

CSS3 グラデーション

CSS3 グラデーション

縦方向のグラデーション

background: linear-gradient(#FFF , #3636c3);
background: -moz-linear-gradient(#FFF , #3636c3);
background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#3636c3));

横方向のグラデーション

background: linear-gradient(to left, #FF0000 0%, #ffffff 100%);
background: -moz-linear-gradient(left, #ff0000, rgba(255,0,0,0));
background: -webkit-gradient(linear, left top, right top, from(#ff0000), to(rgba(255,0,0,0)));
公開 2019-08-05 22:46:49
更新 2022-01-31 01:46:01
このページの二次元コード
CSS3 グラデーション

人気のサンプル

search -  category -  about
© 2024 kipure
Top