I am in need of a design similar to the image linked below: https://i.sstatic.net/Er1wT.png
I attempted to create this layout using a table, but I have not been successful in aligning the side images properly.
testTable.html
<style>
.container{
width: 100%;
height: 400px;
}
.left-image, .right-image{
width: 10%;
overflow: hidden;
}
.center-image{
width: 80%;
}
</style>
<table class="container">
<tr>
<td class="left-image">
<img src="img1.png" alt="Snow" style="width:100%">
</td>
<td class="center-image">
<img src="img2.jpg" alt="Snow" style="width:100%">
</td>
<td class="right-image">
<img src="img3.png" alt="Snow" style="width:100%">
</td>
</tr>
</table>
The look I want:
My goal is to have the center image stand out while the left and right images appear blurred, giving the impression that they are behind the central image.