在另一个图像上添加图像

时间:2012-08-29 10:19:51

标签: css styles stylesheet

我的页面的UI当前在页面左上角的背景和文本中显示图像。以下是我用于图像的代码。

<div>
    <div style= "z-index: 1; position: absolute; text-align: left; border: 1px solid black;">
        <img src="slide1.jpg" alt="alt text" style="height:220px;width:500px;border-width:0px;" />
    </div>
    <div id="curtain" style="z-index: 2; position: absolute; padding-left: 10px;">
        <div style="background-color: transparent; font-weight: bold; font-size: 1.8em; padding-top: 5px;">
            Profile
        </div>
        <div style="font-size: 1em; width: 215px; color: #cccccc;">
           He is a good citizen and a great teacher.
        </div>
    </div>
</div>

我想在此图片的右侧添加2个垂直对齐的小图标。

有人可以帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:1)

这样的东西?

http://jsfiddle.net/7KTEQ/

只需在第二个div中添加<div id="smallImages"><img src='ONE' /> <img src='two' /></div>即可 和css是:

   #smallImages {
    position:absolute;
    margin-left:400px;
}​

根据第二个div宽度和图像大小改变css的margin-left ..