× Atención!! Los materiales de este libro aún no están optimizados para dispositivos móviles, para una mejor visualización le recomendamos acceder desde un navegador de escritorio.

Material de Libre Acceso.

Estilos de Gradiente Radial CSS3 (parámetro tamaño)

Gradiente Radial (parámetro tamaño)

  • closest-side

    • background: -webkit-radial-gradient(20px 20px, circle closest-side, black, white)
    • background: -moz-radial-gradient(20px 20px, circle closest-side, black, white);
  • closest-corner

    • background: -webkit-radial-gradient(20px 20px, circle closest-corner, black, white);
    • background: -moz-radial-gradient(20px 20px, circle closest-corner, black, white);
  • farthest-side

    • background: -webkit-radial-gradient(20px 20px, circle farthest-side, black, white);
    • background: -moz-radial-gradient(20px 20px, circle farthest-side, black, white);
  • farthest-corner

    • background: -webkit-radial-gradient(20px 20px, circle farthest-corner, black, white);
    • background: -moz-radial-gradient(20px 20px, circle farthest-corner, black, white);
  • contain

    • background: -webkit-radial-gradient(20px 20px, circle contain, black, white);
    • background: -moz-radial-gradient(20px 20px, circle contain, black, white);
  • cover

    • background: -webkit-radial-gradient(20px 20px, circle cover, black, white);
    • background: -moz-radial-gradient(20px 20px, cover, black, white);