I have to blur only the bottom half portion of a background image. It should be like,
This code blurs the whole image:
<style>
body {
background-image: url('ms.png');
background-size:100% auto;
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter: blur(5px);
}
</style>
How to do it using CSS?