[Ayuda] Imagen de fondo


mtz0

Hablar de más indica mucha ignorancia.
Noderador
Nodero
Noder
Buenas, estoy intentando poner una imagen de fondo pero no me deja este es el CSS:
CSS:
body {
  background-image: url("C:\Users\JUANJO\Documents\sitioweb-bloodynight\img\pics\logo.png");
  font-family: "Arial";

}

*{margin: 0; padding: 0;}

header {
  width: 100%;
  overflow: hidden;
  background:#4A80D1;
  margin-bottom: 20px;
}

.wrapper{
  width: 90%;
  max-width: 1000px;
  margin:auto;
  overflow: hidden;
}

.logo{
  color: #f2f2f2;
  font-size: 50px;
  line-height: 200px;
  float: left;
}

header nav{
  float: right;
  line-height: 100px;
}

header nav a{
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  line-height: normal;
  font-size: 20px;
  font-weight:bold;
}
¿Alguien tiene idea de por qué no me aparece la imagen de fondo?
 

Alexlealxd01

HISTORIADOR Y BIÓLOGO DEL FORO
Noderador
Nodero
Noder
Buenas, estoy intentando poner una imagen de fondo pero no me deja este es el CSS:
CSS:
body {
  background-image: url("C:\Users\JUANJO\Documents\sitioweb-bloodynight\img\pics\logo.png");
  font-family: "Arial";

}

*{margin: 0; padding: 0;}

header {
  width: 100%;
  overflow: hidden;
  background:#4A80D1;
  margin-bottom: 20px;
}

.wrapper{
  width: 90%;
  max-width: 1000px;
  margin:auto;
  overflow: hidden;
}

.logo{
  color: #f2f2f2;
  font-size: 50px;
  line-height: 200px;
  float: left;
}

header nav{
  float: right;
  line-height: 100px;
}

header nav a{
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  line-height: normal;
  font-size: 20px;
  font-weight:bold;
}
¿Alguien tiene idea de por qué no me aparece la imagen de fondo?
body {
background: url(imagen.png) no-repeat center top;
background-size:100% 100%;
font-family: "Arial";
}

*{margin: 0; padding: 0;}
header {
width: 100%;
overflow: hidden;
background:#4A80D1;
margin-bottom: 20px;
}
.wrapper{
width: 90%;
max-width: 1000px;
margin:auto;
overflow: hidden;
}
.logo{
color: #f2f2f2;
font-size: 50px;
line-height: 200px;
float: left;
}
header nav{
float: right;
line-height: 100px;
}
header nav a{
display: inline-block;
color: #fff;
text-decoration: none;
padding: 10px 20px;
line-height: normal;
font-size: 20px;
font-weight:bold;
}
 
  • Like
Reacciones : cbrn y Chrxmantic

mtz0

Hablar de más indica mucha ignorancia.
Noderador
Nodero
Noder
body {
background: url(imagen.png) no-repeat center top;
background-size:100% 100%;
font-family: "Arial";
}

*{margin: 0; padding: 0;}
header {
width: 100%;
overflow: hidden;
background:#4A80D1;
margin-bottom: 20px;
}
.wrapper{
width: 90%;
max-width: 1000px;
margin:auto;
overflow: hidden;
}
.logo{
color: #f2f2f2;
font-size: 50px;
line-height: 200px;
float: left;
}
header nav{
float: right;
line-height: 100px;
}
header nav a{
display: inline-block;
color: #fff;
text-decoration: none;
padding: 10px 20px;
line-height: normal;
font-size: 20px;
font-weight:bold;
}
gracias tio <3