PODRECZNIK

Gradienty

Liniowe
<div></div>
div{
height:200px;
width:200px;
background:linear-gradient(red,yellow);
}

Efekt

Radialne
div{
width:200px;
height:200px;
background: radial-gradient(red,yellow,green);
}

Efekt

Powtarzające się
div{
width:200px;
height:200px;
background: repeating-linear-gradient(red,yellow 10%,green20%);
}

Efekt