10
twitterのブートストラップフレームワークを使用してdiv内に絶対的な位置を決めることはできません。私は次のようにスキームに従う一連の行を持ってtwitterで絶対divを正しく配置するにはどうすればいいですか?bootstrap 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;
}
しかし、タイムスタンプのdivが常に任意の中間を無視して、全体のDOM文書の本文の絶対に自分自身を配置しますdivs。これを引き起こしているすべてのアイデア?