2012-03-27 37 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的。任何想法是什么造成这种情况?

回答