Ya encontre el problema esta una tonteria como yo suponia, si un mod quiere borrarlo adelante si no puede quedar como contrubucion de un ejemplo de pagina de 3columnas para quien le sirva xd
css es
Cita: body{
background-attachment: fixed;
background-image: url(images/fondo.gif);
background-repeat: repeat-x;
}
#contenedor{
margin:auto;
height: 1001px;
width:1101px;
top:0;
}
#cabeza {
height: 100px;
width: 1000px;}
#izquierda {
float:left;
width: 140px;
height: 1000px;
background-image: url(images/fondo_izquierda.jpg);
z-index:1;
}
#centro {
width: 520px;
padding: 10px;
height: 980px;
overflow: auto;
z-index:1;
float:left;
background-image: url(images/fondo_centro.jpg);
}
#derecha {
width: 320px;
height: 1000px;
background-image: url(images/fondo_derecha.jpg);
z-index:1;
float:left;
}
y el html
Cita: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="hoja.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="contenedor">
<div id="cabeza"><img src="images/titulo.jpg"></div>
<div id="izquierda">zdfsdfsdfknklnkln iuguig iughiuh</div>
<div id="centro">dvdfdf</div>
<div id="derecha">dfzcxxzc</div>
</div>
</body>
</html>