Snafu: vertical-align:bottom will nicht

Beitrag lesen

Probiers mal so (keine Garantie):
CSS

  
#rechts  
{  
    ...  
    ...  
    position:relative;  
}  
#rechts p  
{  
    position:absolute;  
    bottom:0px;  
    right:0px; /* bzw left je nachdem was du willst */  
    ...  
    ...  
}  

HTML

  
...  
<div id="rechts">  
    <p>  
        Warum bin ich so fröhlich, so fröhlich, so fröhlich, ...  
    </p>  
</div>  
...  

--
Lg,
Snafu