Here's an example that let's you set the color of the background. If you don't want to use float, then you might need to set the width and height manually. But even that really depends on the surrounding CSS/HTML.
<style>
#color {
background-color: red;
float: left;
}#opacity {
opacity : 0.4;
filter: alpha(opacity=40);
}
</style>
<div id="color">
<div id="opacity">
<img src="http://www.gravatar.com/avatar/04e8c634e5ee0fd074f78f3bad6eb5b3?s=128&d=identicon&r=PG" src="image.jpg" />
</div>
</div>
