Si te encuentras con algún detalle que te causa duda puedes comentarlo y trataremos de ayudarte lo más rápido posible.
Ejemplo 1: imagen de fondo css
background-image: url("image.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
Ejemplo 2: agregar imagen de fondo css
/* Answer to: "adding background image css" */
/*
The background-image property sets one or more background images
for an element.
By default, a background-image is placed at the top-left corner
of an element, and repeated both vertically and horizontally.
Tip: The background of an element is the total size of the
element, including padding and border (but not the margin).
Tip: Always set a background-color to be used if the image is
unavailable.
*/
/* Set a background-image for the <body> element: */
body
background-image: url("paper.gif");
background-color: #cccccc;
/* Set two background images for the <body> element: */
body
background-image: url("img_tree.gif"), url("paper.gif");
background-color: #cccccc;
Ejemplo 3: imagen de fondo css
body
background-image: url("paper.gif");
Reseñas y puntuaciones del artículo
Recuerda algo, que tienes la capacidad de valorar este ensayo si diste con el hallazgo.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)