2012-03-27 32 views
10

絕對div我似乎無法得到一個div在其父母使用twitter引導框架絕對位置。我有一系列的行遵循的方案如下我如何正確地定位絕招在引誘css框架

<div id='wrapper'> 
<div class='row-fluid'> 
    <div class='span2'>some content here</div> 
    <div class='span9'>other content to the side of the first div</div> 
    <div class='timestamp'>123456 this should align to the bottom right of wrapper</div> 
</div> 
</div> 

CSS

.timestamp{ 
    position:absolute; 
    bottom:0px; 
    right:0px; 
} 

但時間戳格始終將自身定位於絕對的整個DOM文檔的忽略任何中間的身體div的。任何想法是什麼造成這種情況?

回答