不要将其应用于正文,将其应用于如下全尺寸容器,将容器大小和位置设置为绝对,然后将其余内容设置为相对并设置 z-indexes。
<body>
<div class="bgImageContainer">
</div>
<div class="content"> Some text and stuff here</div>
</body>
.bgImageContainer{
background-image:url('http://www.whitegadget.com/attachments/pc-wallpapers/16950d1224057972-landscape-wallpaper-blue-river-scenery-wallpapers.jpg');
width:500px;
height:400px;
-webkit-filter: blur(5px);
z-index:0;
position:absolute;
}
.content{
z-index:10;
position:relative;
}
编辑 - 更新了小提琴,旧图像不再起作用。
http://jsfiddle.net/Yr2zD/1130/