Bir div'i içeren div'in altına nasıl yerleştirebilirim?
<style>
.outside {
width: 200px;
height: 200px;
background-color: #EEE; /*to make it visible*/
}
.inside {
position: absolute;
bottom: 2px;
}
</style>
<div class="outside">
<div class="inside">inside</div>
</div>
Bu kod, "içerideki" metni sayfanın altına yerleştirir.
position: relative;