Peter Klein
Erfahrenes Mitglied
Hallo
Habe eigentlich keine Probleme eine Seite zu zentrieren.
Nur diesmal zickt der IE (v.7) rum.
Hier mal der Code.
CSS:
Habe eigentlich keine Probleme eine Seite zu zentrieren.
Nur diesmal zickt der IE (v.7) rum.
Hier mal der Code.
Code:
<!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="de" lang="de">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>www.klein-peter.eu | The finest in privacy</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="wrap">
<div id="logo">klein-peter.eu</div>
<div id="diag" title="Logo" alt="Logo"></div>
<div id="header">
<div id="nav">
<ul class="ln">
<li><a href="#" title="Startseite">Start</a></li>
<li><a href="#" title="Über den Autor und diese Seite">Über</a></li>
<li><a href="#" title="Unterwegs">Unterwegs</a></li>
<li><a href="#" title="Bildergalerie">Bilder</a></li>
<li><a href="#" title="Noch mehr">Mehr</a></li>
<li><a href="#" title="Kontakt">Kontakt</a></li>
</ul>
</div>
</div>
<div id="content">
<div id="nav2">
<span class="search">
<form>
<input class="searchfield" type="text" name="Suche" title="Suche" size="15"/>
<input class="searchsubmit" type="submit" name="" value="Suche" />
</form>
</span>
<span class="navr">
</span>
</div>
<div id="cloumn"></div>
</div>
</div>
</body>
</html>
CSS:
Code:
* {
margin: 0;
padding: 0;
border: 0;
}
html, body {
background-image: url(images/bg.png);
text-align: center;
min-height: 100%;
color: #333;
}
h1,h2 {
margin: 2px;}
a {
color: #1c1c1c;
text-decoration: none;
}
image {
border: 0;
}
ul {
list-style-type: none;
margin: 0;
}
li {
padding: 0;
margin: 0;
}
#wrap {
position: relative;
text-align: center;
margin-left: -400px;
left: 50%;
width: 800px;
}
#logo {
display: none;
position: fixed;
left: 0;
top: 0;
font-size: 2em;
}
#diag {
background-image: url(images/diag.png);
position: fixed;
right: 0;
top: 0;
height: 150px;
width: 150px;
}
#header {
background-image: url(images/head.png);
background-color: #ffffff;
border-left: 1px solid #666;
border-right: 1px solid #666;
border-bottom: 1px solid #666;
height: 120px;
width: 800px;
}
#content {
background-color: #ffffff;
margin-top: 10px;
width: 800px;
height: 600px;
border-top: 3px solid #666;
border-left: 1px solid #666;
border-right: 1px solid #666;
padding: 0px;
text-align: left;
}
#column {
float: right;
width: 580px;
}
#nav2 {
border-left: 1px solid #666;
float: right;
width: 200px;
height: 400px;}
#nav {
padding-top: 5.3em;
font-size: 1em;
}
#nav a {
background-color: #def4f7;
-moz-opacity: 0.6;
border: 1px solid #666;
display: block;
float: left;
padding: 2px;
margin: 10px 0 0 -1px;
text-decoration: none;
width: 6em;
text-align: center;
}
#nav ul {
margin: 0;
padding: 0;
list-style-type: none;
display: inline;
}
#nav li {
display: inline;
list-style-type: none;
margin: 0;
padding: 0;
}
#nav a:link {
}
#nav a:hover {
background-color: #ccdfe2;
-moz-opacity: 0.3;
}
/* ALLGEMEINE KLASSEN */
.search {
text-align: center;
margin: 5px;
}
.searchfield {
}