Hallo
Ich hab grad ein Grundgerüst für ne Website gemacht und hab schon ein Problem.
Kannmir jemadn sagen was an meinem Code nicht stimmt?
Das Problem ist, dass die Site im IE super aussieht und im Opera eher seltsam:-)
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<style type="text/css">
#mainText{font-family: cursive;font-size: 13px;}
body {margin-top:3%;text-align: center;background-color: white}
#container { border: 2px solid #990033;background-color:white;width:80%;height: 80%;text-align: center;margin: auto}
#menue_container {width: 20%;height: 70%;border: 0px solid #990033;margin: 20px;text-align: center;}
#menue_container ul {list-style-type: none;margin: 0 0 0 0px}
#header { background-color: 0fff; border: 2px solid #990033;height: 100px;margin: 10px;text-align: center}
#main {width: 60%;height: 70%;margin: 20px;text-align: center; border: 2px solid #990033}
#footer{background-color: 0fff; border: 2px solid #990033;height: 100px;margin: 10px;text-align: center}
#menu{
width:200px;
color:black;
background:#b8ab8f;
padding:10px;
border-top:1px solid #837C6B;
border-right:1px solid #E4D9C0;
border-bottom:1px solid #E4D9C0;
border-left:1px solid #837C6B;
}
#menu a{
color:maroon;
font:bold 13px verdana, sans-serif;
margin:5px 0 5px 0;
padding:1px 3px 1px 4px;
text-decoration:none;
background:transparent;
display:block;
border-top:1px solid #99917d;
border-right:1px solid #e4d9c0;
border-bottom:1px solid #e4d9c0;
border-left:1px solid #99917d;
width:155px;}
#menu a:hover{
color:#f6e4c1;
background:transparent;
border-top:1px solid #e4d9c0;
border-right:1px solid #837c6b;
border-bottom:1px solid #837c6b;
border-left:1px solid #e4d9c0;}
</style>
</head>
<body>
<div id = "container">
<div id = "header">Header</div>
<span id="menue_container">
<div id="menu">
<ul>
[*][url='#']Die Firma[/url]
[*][url='#']Mitarbeiter[/url]
[*][url='#']Referenzen[/url]
[*][url='#']Aktuelle Projekte[/url]
[*][url='#']Tätigkeiten[/url]
[*][url='#']Fuhrpark[/url]
[*][url='#']Hunde[/url]
[*][url='#']Kontakt[/url]
[/list]
</div>
</span>
<span id="main"><div id="mainText">
</span>
<div id="footer"><div id="mainText">
Impressum
[url='mailto:?subject='][/url]
</div></div>
</div>
</body>
</html>
Alles anzeigen