Copia este ejemplo y me dices que opinas...
Código:
<html>
<head>
<title>Capas y css</title>
<style type="text/css">
<!-- Aplicando estilo a una capa -->
<!--
.capa {
position: absolute;
left: 16%;
top: 1%;
width: 77%;
height: 50%;
background-color: #ffffff;
border-style: solid;
border-width: 1px;
border-color: #000000;
}
BODY {
background-color: #eeeeee;
font-family: Verdana;
font-size: 11pt;
color: Navy;
}
-->
</style>
</head>
<body>
<div class="capa">Aqui tu contenido...</div>
</body>
</html>
Slds...