Ver Mensaje Individual
  #4 (permalink)  
Antiguo 20/09/2010, 13:26
Avatar de juan_14nob
juan_14nob
 
Fecha de Ingreso: abril-2010
Mensajes: 552
Antigüedad: 14 años
Puntos: 6
Respuesta: Imagen de fondo para Web

prueba con ese ejemplo que te pase y fijate si es mas o menos lo que pedis

Código HTML:
<html>
<head>
<style type="text/css">
body{
background-image:url('img/Imagenfondo.jpg');
background-repeat:repeat-x;

height:100%;
width:100%;
}

#container{
margin: 0 10% 0 10%;
width:80%;
background-color:red;
height:500px;
}

</style>
</head>

<body>

<div id="container">
Contenido.Contenido.Contenido.Contenido. 


</body>

</html>