Möchte ein Bild ein einem Div unten Positionieren !
html:
css:
Leider ist das Bild(oder zum testen auch text) immer oben
Wie gehts richtig ?
html:
Code:
<div id="content"> <div class="left_box">left</div> <div class="img_active">dasdasd</div> <div>all other</div> </div>
Code:
/*___ content ___*/ #content { background-image:url(../images/site/bg_content.gif); background-repeat:no-repeat; width:996px; height:545px; } #content .left_box { width:86px; float:left; height:545px; } #content .img_active { width:86px; float:left; vertical-align:bottom; height:545px; background-color:#0033CC; }
Leider ist das Bild(oder zum testen auch text) immer oben
Wie gehts richtig ?
Kommentar