Bueno hize un archivo llamado general.css que esta dentro de la carpeta css en el cual incluyo este codigo:
Código:
body {
margin: 0;
padding: 0;
background-image: url(img/negrob.jpg) no-repeat center top fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
tambien intente así:
Código:
Código:
body {
margin: 0;
padding: 0;
background: url(img/negrob.jpg) no-repeat center top fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
en mi pagina adjunto el archivo así:
Código:
<link href="css/general.css" rel="stylesheet" type="text/css">
Al correr la pagina no me muestra la imagen, la ruta de la imagen es la correcta.