Myribo
New member
tag miteinander 
ich hab n problem:
ich soll eine seite erstellen. dafür hab ich erstmal folgendes gecodet:
und die style.css:
mein problem: im ie siehts so aus wies aussehen soll, aber im fifo läuft der linke container bei height:100 % unten raus. was muss ich ändern?
Im IE:

und im Firefox:

schonmal besten dank!
gruß
christoph
ich hab n problem:
ich soll eine seite erstellen. dafür hab ich erstmal folgendes gecodet:
HTML:
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<title>Titel</title>
</head>
<body>
<div id="inhalt">
<div id="oben">
Logo
</div>
<div id="links">
Navi
</div>
<h1>Überschrift</h1>
normaler text<br>
<input type="text">
</div>
</body>
</html>
und die style.css:
Code:
body {text-align:center;background-color:#ececec}
#inhalt
{
border-width:1px;
border-style:solid;
border-color:#1D5B90;
margin:0px auto;
width:760px;
text-align:center;
background-color:#ffffff;
font-family:Verdana;
font-size:13px;
height:500px;
}
#oben
{
height:65px;
padding-top:8px;
padding-bottom:0px;
background-color:#ffffff;
border-bottom:1px;
border-style:dashed;
border-color:#1D5B90;
border-width:0px;
border-bottom-width:1px;
}
#links
{
padding:15px;
background-color:transparent;
width:128px;
height:100%;
float:left;
border-style:dashed;
border-color:#1D5B90;
border-width:0px;
border-right-width:1px;
}
input,textarea,option
{
background-color:#d5dcef;
border-bottom:1px;
border-style:dashed;
border-color:#1D5B90;
border-width:1px;
margin:15px;
}
h1
{
font-size:15px;
font-weight:bold;
color:#1D5B90;
margin:15px;
}
mein problem: im ie siehts so aus wies aussehen soll, aber im fifo läuft der linke container bei height:100 % unten raus. was muss ich ändern?
Im IE:

und im Firefox:

schonmal besten dank!
gruß
christoph