CSS的linear-gradient屬性用于創(chuàng)建一個(gè)線性漸變效果。它可以通過(guò)指定起始點(diǎn)和結(jié)束點(diǎn)的顏色和位置來(lái)定義漸變。
使用linear-gradient屬性的基本語(yǔ)法為:
background: linear-gradient(direction, color-stop1, color-stop2, ...);
其中,direction指定漸變的方向,可以是角度或關(guān)鍵字之一(如to top、to bottom、to left、to right等)。color-stop1、color-stop2等參數(shù)指定漸變中停止的顏色和位置。
以下是一些示例:
background: linear-gradient(to bottom, #ff0000, #0000ff);
background: linear-gradient(45deg, #ff0000, #0000ff);
background: linear-gradient(to right, #ff0000 0%, #00ff00 50%, #0000ff 100%);
background: linear-gradient(135deg, #ff0000, #0000ff);
這些只是一些示例,linear-gradient屬性還有更多的用法和選項(xiàng),可以根據(jù)具體需求進(jìn)行調(diào)整。