Hi Christoph!
da fehlt dann ja nur noch das es middle ist und center...
Was?
Wäre super wenn ihr dazu noch kurz eure Meinung schreibt ob das so okay ist!? also gehn würde es...
Bei mir sieht das noch nicht so aus, wie Du dir das vorstellst.
(Das ist irgendwie ein lustiger Satz. :D)
Das position:fixed und die top und left Angaben musst Du nur für div#home angeben, das reicht. Alle untergeordneten Elemente erben die Eigenschaften. Das gleiche gilt für die Angaben zur Schriftart und Schriftfarbe. Bei Deinen Farbangaben fehlt die Raute -> Farbe wird zumindest im Firefox nicht angezeigt. Die Breite und Höhe verwendest Du auch redundant. Ich würde es so machen, dass nur div#home a eine Breite und Höhe bekommt und noch ein display:block verpasst kriegt. Dann klappt das auch, dass der ganze "Würfel" die Hintergrundfarbe bekommt.
Dein CSS sieht dann entschlackt so aus:
div#home { position:fixed;
font-family:Lucida sans unicode;
font-style:normal;
top:215px;
left:305px;
}
div#home a { display:block;
text-decoration: none;
font-size:70%;
color:#FFFFFF;
width:95px;
height:95px;
border:0px;
background-color:#409010;
}
div#home a:hover {
font-size:100%;
border:0px;
background-color:#FF0030;
}
mfG
Benjamin
For animals, the entire universe has been neatly divided into things to (a) mate with, (b) eat, (c) run away from, and (d) rocks.