我有幾個嵌套的div,我試圖將一些文本浮動在圖像的右下角,然後在圖像的右側放置更多文本。浮動文本顯示在整行的右側,而不是圖像的右側。整個事物(連同其他文本)被包裹在一個大的div中,如果我添加底部:0px,我想浮動的文本顯示在底部。在圖像上浮動文本,右對齊
它應該是(與一些在圖像的右下角)
[_1]標題
,但我發現
[_]標題1
HTML
<div>
<div class='outerwrapper'>
<div class='innerwrapper'>
<img src='image.jpg'>
<div class='floatedtext'>1</div>
</div>
<div class='caption'>image caption to the right<br></div>
</div>
</div>
CSS
個.outerwrapper
{
clear: both;
min-height: 45px;
margin-left: 10px;
}
.innerwrapper
{
clear:both;
}
.caption
{
font-size:13px;
}
.floatedtext
{
font-size:12px;
position: absolute;
right:0px;
text-align:right;
}