Und inzwischen weiß ich selbst nicht mehr wo die Tomaten im Salat sind :/
Du brauchst vmtl. keine Tabelle, zumindest lassen deine Inhaltsangaben darauf schließen. Du hast vielmehr ein etwas ausgefallenes Layout mit dem einzigen Problem, daß 100% schlecht ohne Rest durch 6 teilbar ist. Der Grundaufbau:
<body>
<div id="no1"></div>
<div id="no2">
<h1>Div 2</h2>
<p>Lorem ipsum...</p>
<p>Lorem ipsum...</p>
</div>
<div id="no3"></div>
<div id="no4"></div>
<div id="no5"></div>
<div id="no6"></div>
</body>
Und das CSS:
body, html {
margin:0;
padding:0;
width:100%;
height:100%;
}
body {
font-family:Verdana,Arial,Helvetica,sans-serif;
background-color:#fff;
color:#000;
font-size:100%;
}
div {
position:absolute;
top:0;
width:16%;
height:100%;
border:1px solid blue;
}
#no2 {
margin-left:16%;
}
#no3 {
margin-left:32%;
}
#no4 {
margin-left:48%;
}
#no5 {
margin-left:64%;
}
#no6 {
margin-left:80%;
}
#no2 h1, #no2 p {
height:30%;
overflow:auto;
}
Keine Tabelle, alles CSS. Ich meine, darauf kannste aufbauen.
~JJ