Pués es que tengo un problemilla, el caso es que maquetando una web, quiero lo siguiente:
BORDE | PARTE CENTRAL CONTENIDOS | BORDE
El caso, es que tengo esto en el HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Content-Language" content="es" />
<meta name="Author" content="erdanblo :: www.erdanblo.tk" />
<title>n0-waY :: CS TEAM</title>
<style type="text/css" title="currentStyle">
@import "gfx/estilo.css";
</style>
</head>
< body>
<div id="contenedor">
<div id="borde1"></div>
<div id="central"></div>
<div id="borde2"></div>
</div>
</body>
</html>
Y en la CSS:
html {
height: 100%;
}
body {
height: 100%;
background-color: #282D3C;
margin-top: 0px;
margin-bottom 0px;
}
div#contenedor {
width: 630px;
height: 100%;
margin-left: auto;
margin-right: auto;
}
div#borde1 {
width: 41px;
height: 100%;
background-image: url(interface/borde1.jpg);
position: relative;
top: 0xp;
left: 0px;
}
div#borde2 {
width: 41px;
height: 100%;
background-image: url(interface/borde2.jpg);
position: relative;
top: 0px;
right: 0px;
}
div#central {
width: 548px;
height: 100%;
top: 0xp;
}
El caso es que, me sale una cosa asi...
BORDE
|
PARTE CENTRAL
|
BORDE
Todo hacia abajo, en vez de montarmelo a la misma altura todo... no se si me explico ;P