Hi Ralph,
danke fuer die schnelle Antwort :-)
Wenn ich folgendes mache:
<div id="navi">
aaaa
</div>
<div id="content">
aaaaaa<br />
aaa
</div>
klafft der content Rahmen ganz oben links.
Wie kann ich das denn jezt nebeneinander floaten?
Hast du da eine Idee?
// EDIT:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#navi {
font-size: 8pt;
border-width: 1px;
border-style: solid;
border-color: black;
-moz-border-radius:15px;
-khtml-border-radius:15px;
max-width: 90px;
min-width: 90px;
min-height: 450px;
margin: 150px 5px 5px 150px;
padding: 2.5em;
text-align: justify;
position: absolute;
}
#content {
font-size: 8pt;
border-width: 1px;
border-style: solid;
border-color: black;
-moz-border-radius: 15px;
-khtml-border-radius: 15px;
max-width: 200px;
min-width: 800px;
min-height: 470px;
margin: 150px 5px 5px 300px;
padding: 1.5em;
text-align: left;
position: absolute;
}
so ging es auch.
Aber ist das eine saubere Loesung?