#
I read a lot of codes but apparently, none of them addresses my question here.
Say you have this simple html:
<html>
<head>
</head>
<body>
<div class="aaa" style="display: inline">
<img src="image_aaa.jpg">
</div>
<div class="bbb" style="display: inline;">
<img src="image_bbb.jpg">
</div>
<div class="ccc" style="display: inline">
<img src="image_ccc.jpg">
</div>
</body>
</html>
And you have image1.jpg. All images have the same size.
How can you put image1.jpg OVER image_bbb.jpg with transparency, so that you can still see a little bit of image_bbb.jpg?
The focus of the question is on the OVER. I presume that the transparency could be obtained with a "opacity: 0.30;" in the CSS for instance.
Thanks!
PS: Important: image1.jpg is not in the html code. It must be handled afterwards. So please avoid some solution like:
<div class="aaa" style="display: inline">
<img src="image_aaa.jpg">
<img src="image1.jpg">
</div>
and CSS overlapping. But rather something like this:
<html>
<head>
<script>
((image1.jpg code here if JS used))
</script>
<style>
((or image1.jpg code here if CSS used))
</style>
</head>
<body>
...
PPS: If suitable, you can also use JS for the solution.
(Thanks to @Paulie_D!)