So, I have a very simple div container.
https://jsfiddle.net/ma47fbut/
.container{
width:200px;
height:100px;
background-color:#dc5562;
}
.inside{
width:150px;
height:50px;
margin:20px;
background-color:rgba(50,80,115, 0.4);
opacity: 1;
}
<div class="container">
<div class="inside">
</div>
</div>
I want to make the bottom part of the inside
div blurry so that it appears to just blurred out or smoothed out (thus no sharp border line)
I found some helps online but they seem to work with background image.
Any help will be much appreciated!
Thanks!