在CSS中,實現右側漸變可以使用background屬性和linear-gradient函數。
background: linear-gradient(to right, #color1, #color2);
其中,to right指定漸變方向為從左到右。
也可以加上漸變開始位置和結束位置的百分比:
background: linear-gradient(to right, #color1 0%, #color2 100%);
這里0%表示漸變開始于左側,100%表示漸變結束于右側。
上一篇css怎么圖片跟文字對齊
下一篇css怎么只設置一個圓角