Hi
Ich hab ein problem, ich erstelle gerade eine Homepage aber das Layout wird falsch dargestellt, in Firefox wird es fast richtig angezeigt, aber im IE wird es sehr falsch dargestellt.
Könntet ihr mir bitte helfen?
Thx
Hier meine home.php:
Und meine style.css
Ich hab ein problem, ich erstelle gerade eine Homepage aber das Layout wird falsch dargestellt, in Firefox wird es fast richtig angezeigt, aber im IE wird es sehr falsch dargestellt.
Könntet ihr mir bitte helfen?
Thx
Hier meine home.php:
HTML:
<!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=iso-8859-1" />
<title></title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="container">
<div id="header"></div>
<div class="leftCol">
<div class="box"></div>
</div>
<div class="centerCol">
<div id="content">
<br />
</div>
</div>
<div class="rightCol"><div class="box2"></div></div>
</div>
<div class="clear"> </div>
</div>
</body>
</html>
Und meine style.css
HTML:
body {
padding: 0px;
margin: 0px;
background-image: url(images/bgs.jpg);
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
}
#container {
width: 800px;
margin: 0 auto;
background-image: url(images/bgs.jpg);
}
#header {
background-color: #4978dc;
background-image: url(images/logo.jpg);
width: 800px;
height: 130px;
border: 1px solid black;
margin-bottom: 8px;
}
.leftCol { /* linke Spalte */
width: 150px;
float: left;
}
.centerCol {
width: 500px;
margin: 0 auto;
}
.rightCol { /* rechte Spalte */
width: 150px;
float: right;
}
#content {
background-color: #efefef;
width: 440px;
min-height: 450px;
border: 1px solid black;
margin-bottom: 5px;
padding: 20px;
padding-right: 20px;
margin-right: 15px;
margin-left: 15px;
}
.box {
background-color: #efefef;
width: 150px;
border: 1px solid black;
margin-bottom: 8px;
background-image: url(images/box-bg.gif);
padding-top: 65px;
margin-left: 5px;
}
.box2 {
background-color: #efefef;
width: 150px;
border: 1px solid black;
margin-bottom: 8px;
background-image: url(images/box-bg.gif);
padding-top: 65px;
margin-right: 5px;
}