Moin, moin!
Bin grad am erstellen einer Website. Mit dem Internet Explorer klappt alles wunderbar nur mit Webbrowsern wie "netscape" oder ähnliches verschiebt sich das Design total.
Habt ihr vielleicht ne Idee, woran es liegt oder so?
Hier ist der Code:
Code
<!--
body {
background-image: url("pics/back.png"); color: black;
margin-top: 50px;
text-align:center; font-size:100%; font-family: verdana, helvetica,sans-serif;
scrollbar-base-color:black;
scrollbar-track-color:black;
scrollbar-face-color:black;
scrollbar-highlight-color:black;
scrollbar-3d-light-color:black;
scrollbar-dark-shadow-color:black;
scrollbar-shadow-color:black;
scrollbar-arrow-color:#FF0000;
}
#main {
background-color: black; color: white;
border: 1px solid black;
width: 900px; /* oder auch z.B. 800px */
}
#top {
background-image: url("pics/banner3.png"); color:black;
height: 100px;
width: 900px;
border-bottom:3px solid black;
text-align:left;
}
#top h1, #top p {
padding:0; margin:0;
}
#nest {
background-color:black;color:black;
font-size:80%;
height: 250px;
text-align: left;
}
#leftBox {
color:black;
width: 500px; float:left;
height: 400px;
border-right:2px solid black;
#fernseher {
width:500px;
height: 350px;
}
#nav {
background-image: url("pics/nav3.png");
width: 500px;
height: 50px;
}
#leftBox h1, #leftBox p {
padding:0; margin:0;
}
#content {
height: 400px;
width: 380px;
margin: 0 0 0 500px;
overflow: scroll;
color: white;
}
#content h1, #content p {
padding:0; margin:0;
}
-->
Alles anzeigen
und die Html (Php)datei dazu:
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>THE CAKES - REALLY GOOD LOOKIN PUNKROCK</title>
<link rel="STYLESHEET" type="text/css" href="css.css">
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /></head>
<body scroll="no">
<div id="main">
<div id="top">
</div>
<div id="nest">
<div id="leftbox">
<div id="fernseher">
[img]pics/news-screen.png[/img]
</div>
<div id="nav">
</div>
</div>
<div id="content">
INHALTNCENEO
</div>
</div>
</body>
</html>
Alles anzeigen