Hallo liebes HTML-Volk,
ich bin Momentan dabei mir durch diverse Tutorials HTML beizubringen.
Nun habe ich folgendes Problem:
Ich habe mir mit Hilfe einer Tabelle folgendes Layout erstellt:
CSS:
nun will ich aber, dass mein Layout immer genau über einen Bildschirm geht, d.h. der Scrollbalken rechts außen soll verschwinden. Stattdessen soll der Inhalt des Content-tds scrollbar sein.
Mein Problem ist, dass sich das content-td momentan immer der größe des Inhalts anpasst und das Layout somit über einen Bildschirm hinaus geht...
ich hoffe hier kann mir geholfen werden.
Danke schonmal im Vorraus!
Simon
ich bin Momentan dabei mir durch diverse Tutorials HTML beizubringen.
Nun habe ich folgendes Problem:
Ich habe mir mit Hilfe einer Tabelle folgendes Layout erstellt:
CSS:
Code:
table
{
border-style: solid;
border-width: 1px;
border-color: 000000;
border-spacing: 0px;
height: 100%;
width: 100%;
}
td#header
{
border-style: solid;
border-width: 1px;
border-color: 000000;
border-spacing: 0px;
height: 80px;
width: 100%;
}
td#content
{
border-style: solid;
border-width: 1px;
border-color: 000000;
border-spacing: 0px;
height: 100%;
width: 100%;
overflow: auto;
}
td#bottomline
{
border-style: solid;
border-width: 1px;
border-color: 000000;
border-spacing: 0px;
height: 20px;
width: 100%;
}
div#content2
{
overflow: scroll;
width: 100%;
height: 100%;
}
Code:
<html>
<head>
<title>test</title>
<link "style=text/css" href="Style.css" rel="stylesheet"/>
</head>
<body>
<table>
<tr>
<td id=header>
Header
</td>
</tr>
<tr>
<td id=content>
<div id=content2>
Content
<br />
<br />
<br />
Content
<br />
<br />
<br />
Content
<br />
<br />
<br />
Content
<br />
<br />
<br />
Content
<br />
<br />
<br />
Content
<br />
<br />
<br />
Content
<br />
<br />
<br />
Content
<br />
<br />
<br />
Content
<br />
<br />
<br />
Content
<br />
<br />
<br />
Content
<br />
<br />
<br />
Content
<br />
<br />
<br />
Content
<br />
<br />
<br />
Content
<br />
<br />
<br />
Content
<br />
<br />
<br />
Content
<br />
<br />
<br />
Content
<br />
<br />
<br />
</div>
</td>
</tr>
<tr>
<td id=bottomline>
Bottomline
</td>
</tr>
</table>
</body>
</html>
nun will ich aber, dass mein Layout immer genau über einen Bildschirm geht, d.h. der Scrollbalken rechts außen soll verschwinden. Stattdessen soll der Inhalt des Content-tds scrollbar sein.
Mein Problem ist, dass sich das content-td momentan immer der größe des Inhalts anpasst und das Layout somit über einen Bildschirm hinaus geht...
ich hoffe hier kann mir geholfen werden.
Danke schonmal im Vorraus!
Simon
Zuletzt bearbeitet von einem Moderator: