Código HTML:
<body>
<div class="contenedor">
<div class="izquierda"></div>
<div class="derecha"></div>
<div class="centro">
<table>
..........CELDAS.........
</table>
</div>
<div class="clear"></div>
</div>
</body>
Código:
.contenedor{
width: 100%;
height: 100%;
margin: 0;
}
.izquierda{
width: 102px;
height: 100%;
float: left;
background: url("columna.jpg") repeat-y;
}
.derecha{
width: 103px;
height: 100%;
float: right;
background: url("columna.jpg") repeat-y;
}
.clear{
clear: both;
}