Hallo!
Habe folgendes Script
HTML:
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" lang="de">
<head><meta http-equiv="Content-type" content="text/html ; CHARSET=iso-8859-1"/>
<title>Hallo</title>
<link rel="stylesheet" type="text/css" href="css/basic.css" media="screen"/>
</head>
<body color="ffffff">
<div id="wrap">
<div id="header">
<h1>Titel</h1>
</div>
<div id="navigation">
<ul>
[*]
[url='index.php']Start[/url]
[*]
[url='about.html']Über uns[/url]
[*]
[url='register.php']Registrierung[/url]
[*]
[url='impressum.html']Impressum[/url]
[*]
[url='kontakt.html']Kontakt[/url]
[*]
[url='formular2.php']Login[/url]
<ul>
</div>
<div id="sidebar">
sdsd</p>
</div>
<div id="content">
<h1>Kontakt</h1>
Text blabla
</p>
</div>
</div>
</body>
</html>
Alles anzeigen
CSS:
Code
#body {
font-size: 85%;
font-famliy: 'Trebuchet MS', Verdana, Arial, Sans-Serif;
text-align: center;
}
#wrap {
width: 760px;
margin: 0 ;
text-align: center;
}
#header {
float: left;
width: 800px;
height: 110px;
text-align: center;
border-top: 1px solid #999;
}
#navigation {
float: left;
width: 800px;
height: 40px;
border-bottom: 1px solid #999;
border-top: 1px solid #999;
}
#sidebar {
float: left;
width: 150px;
height: 400px;
top: 0;
}
#content {
float: left;
width: 600px;
height: 400px;
border-right: 1px solid #999;
border-left: 1px solid #999;
top: 0;
}
#navigation ul {
list-style-type: none;
}
#navigation ul li {
display: inline;
}
h1, h2, h3, h4, h5, h6 {
margin: 20px;
}
p.boxtext {
border: 1px solid #000;
padding: 5px;
}
p {
margin: 15px 20px;
}
#list {
list-style-position:outside;
}
form {
width:450px;
}
#person label {
display:block;
font-weight: bold;
}
#aktivierung label {
display:block;
font-weight: bold;
}
#login label {
display:block;
font-weight: bold;
}
fieldset {
border: 1px solid #dbd;
background: #fafafa;
}
legend {
font-weight: bold;
font-size: 120%;
color: #999;
}
textarea {
width: 425px;
heigth: 125px;
}
Alles anzeigen
Wenn ich jedoch den Content bereich im CSS auf z.B. 700px vergrößern will rutsch dieser nach unten obwohl doch genügend platz sein sollte nach rechts heraus. Was kann ich da machen.
Gruß niesel