I've set up a very simple HTML page with this CSS code associated with it:
html {
background: url("photourl") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter: blur(5px);
}
However, it doesn't blur. I've taken a look at this example and tried doing it with a div
tag instead but I don't quite see the reasoning here. Why wouldn't the code I posted work?