Hi!
Habe ein kleines Problem als CSS Anfänger!
Ich habe 2 Div in einem Div:
<div id="site">
<div id="main">
<div id="header">
<img src="bilder/01.gif" width="600" height="120"> </div>
</div>
<div id="side">
asdf
</div>
</div>
Jetzt möchte ich den Div "side" neben den Div "header" positionieren und nicht darunter wie es z.Z. passiert.
Hier noch mein CSS:
html,body {
margin-left:87px; padding:0px; width:100%; background-color:#1C31D1; height:100%;
font-weight:normal; font-size:11px; line-height:120%; font-family:Verdana,Helvetica,sans-serif;
}
div#site {
width:850px; float:left;
}
div#header {
width:600px;
}
div#main {
width:600px;
}
div#side {
width:250; margin-right:1px; margin:0px;
}