円形・楕円形のグラデーションを作成する関数です。
radial-gradient(<shape> <size> at <position>, <color-stop>, ...)
background: radial-gradient(circle, #ff6b6b, #4ecdc4);
中央から外側への円形グラデーション
background: radial-gradient(ellipse at top left, #667eea, transparent);
左上を中心とした楕円グラデーション
background: radial-gradient(circle at 30% 70%, rgba(255,107,107,0.3), transparent 50%);
特定位置からの部分的なグラデーション
ボタンのホバー効果やスポットライト効果に最適。
IE10+, 全モダンブラウザ