Liste in Div ausrichten

Status
Nicht offen für weitere Antworten.
Hierfür muß die Liste in dem DIV entsprechend positioniert werden:

Code:
div.box {
position: relative;
height: 200px;
border: 1px solid #000;
}

div.box ul {
position: absolute;
right: 0;
bottom: 0;
margin: 0;
padding: 0;
}
Code:
<div class="box">
     <ul>
         <li>Listenpunkt</li>
     </ul>
</div>
 
Status
Nicht offen für weitere Antworten.
Zurück