利用角度調整的線性漸層效果:
利用 gradients 的第一個參數並設定為 90deg,也就是轉 90 度的意思。
#DEG{
background: -webkit-linear-gradient(90deg,yellow,red);
background: -o-linear-gradient(90deg,yellow,red);
background: -moz-linear-gradient(90deg,yellow,red);
background: linear-gradient(90deg,yellow,red);
}