Nicht mehr ganz neu hier
hallo leute
ich habe da ein kleines problem mit der erstellung einer Webseite
ich hoffe ihr könnt mir helfen
ich möchte in meinen template einen bestimmten div dazu bringen in 100%
höhe zu öffen er soll sich am browser fenster orientiren und wenn er mehr inhalt bekommt soll der div sich automatisch verlängeren
ich hoffe ihr könnt mir helfen
html
css
ich habe da ein kleines problem mit der erstellung einer Webseite
ich hoffe ihr könnt mir helfen
ich möchte in meinen template einen bestimmten div dazu bringen in 100%
höhe zu öffen er soll sich am browser fenster orientiren und wenn er mehr inhalt bekommt soll der div sich automatisch verlängeren
ich hoffe ihr könnt mir helfen
html
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link href="css/template.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div id="site">
<div id="top-login">Login</div>
<div id="header">Header</div>
<div id="content">
<div id="left">left</div>
<div id="right">right</div>
<div id="main">
[COLOR=Red]div soll eine höhe 100% haben also immer Automatisch an browser höhe angepast werden<br />
das soll dann auch für die anderen divs gelten ich schffe es immder nur vür einen Div<br />
ich danke euch für eure hilfe !!!!!!!!!!!!!!![/COLOR]
</div>
</div>
</div>
</body>
</html>
Code:
html
{
height: 100%;
}
body
{
background: url(../images/background.png);
background-position: top center;
margin: 0px;
}
#site
{
background: url(../images/rahmen.png);
background-position: top center;
width: 1030px;
height: 100%;
margin: 0px auto;
}
#top-login
{
background-color: #000099;
height: 40px;
width: 980px;
margin: 0px auto;
}
#header
{
background: #660099;
height: 193px;
margin: 0px auto;
width: 980px;
}
#content
{
background: #FFFF00;
margin: 0px auto;
width: 980px;
}
#left
{
background: #FF0000;
width: 160px;
float: left;
}
#right
{
background: #FF0000;
width: 160px;
float: right;
}
#main
{
background: #888888;
padding-left: 5px;
padding-right: 5px;
margin: 0px 160px 0px 160px;
}