ich bin mit meiner Website quasi fertig und muss noch den letzten Makel entfernen. Ich habe vier kleine Grafiken als CSS-Switcher-Navigation in einem DIV liegen. Leider bekomme ich es nicht hin, dass sie sich am unteren Rand des DIVs anordnen und bottom:0; hat nichts gebracht. :-/
CSS:
- Code: Alles auswählen
body {
margin:0;
padding:0;
background-color:#fff;
font-family:Arial,Helvetica,sans-serif;
font-size:100,01%;
}
img {
display:block;
border:0;
}
#titelwrap {
margin-top:30px;
margin-left:0;
padding-left:230px;
width:600px;
margin-bottom:25px;
}
#titel {
margin-left:0;
float:left;
}
#farbmenue, img {
text-align:right;
display:inline;
}
HTML:
- Code: Alles auswählen
<div id="farbmenue">
<p>
<a href="<?php echo $_SERVER['SCRIPT_NAME']?>?style=style_default"><img src="../grafx/de.gif" width="10" height="10" alt="weiß" /></a>
<a href="<?php echo $_SERVER['SCRIPT_NAME']?>?style=style_rw"><img src="../grafx/rw.gif" width="10" height="10" alt="rot" /></a>
<a href="<?php echo $_SERVER['SCRIPT_NAME']?>?style=style_ws"><img src="../grafx/ws.gif" width="10" height="10" alt="schwarz" /></a>
<a href="<?php echo $_SERVER['SCRIPT_NAME']?>?style=style_mg"><img src="../grafx/mg.gif" width="10" height="10" alt="magenta" /></a>
</p>
</div>
Weiß jemand Rat/die Lösung?
Schöne Grüße

