我的页面的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>
我想在这张图片的右手边添加两个垂直对齐的小图标。
有人能帮我做css吗?
类似的东西?
http://jsfiddle.net/7KTEQ/
只需在第二个div中添加<div id="smallImages"><img src='ONE' /> <img src='two' /></div>
它的css是:
#smallImages {
position:absolute;
margin-left:400px;
}
根据第二个div宽度和图像大小更改css的左边距。。