求在一张图片上边添加一张小图的css代码

求在一张图片上面添加一张小图的css代码
像这样,在图片上面添加一张活动已结束的css代码,谢谢了

求在一张图片上边添加一张小图的css代码
------解决方案--------------------
你可以使用div然后用一个div做背景图,另外一个div挡在前边的那个图

.aaa {background:url(../aaa.jpg);width: 100px;height: 100px;position: relative;}/**背景图片这里背景容器要写成相对位置*/
.bbb {background:url(../bbb.jpg);width: 10px;height: 10px;position:absolute;top:30px;left: 325px;}/**挡在前边的图,这里要是用相对位置我标红了*/


<div class="aaa" >
<div class="bbb" ></div>
</div>

具体图片的高度宽度,你根据你的实际图片大小改一改就行了!
------解决方案--------------------
引用:
你可以使用div然后用一个div做背景图,另外一个div挡在前边的那个图

.aaa {background:url(../aaa.jpg);width: 100px;height: 100px;position: relative;}/**背景图片这里背景容器要写成相对位置*/
.bbb {background:url(../bbb.jpg);width: 10px;height: 10px;position:absolute;top:30px;left: 325px;}/**挡在前边的图,这里要是用相对位置*/


<div class="aaa" >
<div class="bbb" ></div>
</div>

具体图片的高度宽度,你根据你的实际图片大小改一改就行了!

从给你发一下,我发现代码里不能标红,现在CSS的代码就没问题了