CSS - Grandiente de cores
O efeito de grandiente de cores é muito utilizado como fundo das imagens.
Também podemos colocar o fundo numa div que contém uma imagem via CSS.
Nota1 : Coloquei o gradiente como sendo da cor azul indo para a branca mas pode ser
feito com outras cores e mais cores.
No final da página estão os estilos que fizeram os gradientes.
Estilos utilizados neste documento:
<style>
.linear {
background: linear-gradient(white, blue);
height: 100px;
}
.radial {
background: radial-gradient(white, blue);
height: 100px;
}
.gradientemisto {
background: linear-gradient(45deg, #0000FF 0%, #CBEBFF 47%, #A1DBFF 100%);
height: 100px;
}
.gradientenovo {
background: linear-gradient(to bottom, white, blue);
height: 100px;
}
.gradientelinear2 {
background: -webkit-linear-gradient(top, white, blue);
background: -moz-linear-gradient(top, white, blue);
background: -o-linear-gradient(top, white, blue);
height: 100px;
}
.gradientelinearwebkit {
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, blue));
height: 100px;
}
.gradientelinearIE {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#0000FF',GradientType=0);
height: 100px;
}
</style>