Bueno, estoy traspasando un diseño que hice a HTML y cuando lo visualizo con IE6 me muestra lo siguiente:
Me muestra un espacio horizontal entre cada capa, siendo que deviera de verse asi:
El codigo HTML que llevo hasta el momento es el siguiente:
Código PHP:
<div id="wrapper">
<div id="header-wrapper"></div>
<div id="blue-wrapper"></div>
<div id="content-wrapper">
<div id="content_top"></div>
<div id="content_main">
<div id="content">
<p>contenido</p>
<p>contenido</p>
<p>contenido</p>
</div>
</div>
<div id="content_bottom"></div>
</div>
<div id="footer_main">
<p id="footer_text">bla bla bla bla...</p>
</div>
<div id="footer_bottom"></div>
</div>
Código PHP:
#wrapper {
width: 816px;
margin: 0px auto;
}
#header-wrapper {
height: 116px;
background-image: url(images/header.png);
background-repeat: no-repeat;
}
#blue-wrapper {
height: 112px;
background-image: url(images/blue_bg.png);
background-repeat: no-repeat;
background-position: center;
}
#content_top {
height: 12px;
background-image: url(images/content_top.png);
background-repeat: no-repeat;
}
#content_main {
background-image: url(images/content_bg.png);
background-repeat: repeat-y;
background-position: top center;
position: relative;
}
#content_bottom {
height: 12px;
background-image: url(images/content_bottom.png);
background-repeat: no-repeat;
}
#content {
padding: 8px 16px;
}
#footer_main {
height: 28px;
background-image: url(images/footer_bg.png);
background-repeat: no-repeat;
background-position: center;
position: relative;
}
#footer_bottom {
height: 8px;
background-image: url(images/footer_bottom.png);
background-repeat: no-repeat;
background-position: center;
position: relative;
}
#footer_text {
color: #FFFFFF;
text-align: center;
padding-top: 8px;
}