Ver Mensaje Individual
  #16 (permalink)  
Antiguo 09/07/2008, 21:40
carlosguzman
 
Fecha de Ingreso: julio-2008
Ubicación: Bogota
Mensajes: 19
Antigüedad: 15 años, 9 meses
Puntos: 0
Hola mira es de esta forma

Hola perdon que sea tan rapido.. hay te envio algo espero te ayude... hay puedes ver las 2 formas que conozco de declarar un background...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Insertar Background</title>
<style media="all" type="text/css">
body {
background: #FFFFFF;
margin:2px;}
#contenedor {
// de esta forma colocas una imagen de background
background:url(calendar.png) no-repeat;
left:200px;
}
</style>
</head>

<body>
<div id="contenedor">Aqui colocas el contenido</div>
</body>
</html>