probá con esto:
Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>New Document</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
</head>
<style>
#capacontenedora{
postition:relative;
border:1px #CCCCCC solid;
width:155px;
height:102px;
background-color:#00f;
}
#contenedorfoto{
postition:absolute;
width:145px;
height:92px;
z-index: 10;
background-color:#f00;
}
#contenedortexto{
postition:absolute;
right:20px;
top:20px;
width:55px;
z-index:50;
background-color:#0f0;
}
</style>
<body>
<div id="capacontenedora">
<div id="contenedorfoto">
<img src="fotos/thumb/foto.jpg" width="145" height="92" />
<div id="contenedortexto">rs</div>
</div></div>
</body>
</html>