Ejemplo 1: CSS agregando una imagen de fondo desde un archivo
/* The first method using an image on your server */
background: url('img/someimage.jpg');
/* The second method using an image hosted on another server */
background: url('http://www.someimage.com/someimage.jpg');
/* A third method that allows the site to determine protocol instead of explicitly defining it */
background: url('//www.someimage.com/someimage.jpg');
Ejemplo 2: sintaxis de la imagen de fondo en css si está en la carpeta
body {
background: radial-gradient(circle, black, white);
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)