我已經建立了一個非常簡單的HTML頁面,與之相關聯的這個CSS代碼:不能模糊CSS背景
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);
}
然而,這並不模糊。我查看了this示例,並嘗試使用div
標記代替它,但我不太明白這裏的推理。爲什麼我發佈的代碼不工作?
http://stackoverflow.com/questions/13168142/is-it-possible-to-use-webkit-filter-blur-on -背景圖 – sinisake