将来的用户 :IE7,IE8,IE9,IE10,IE11或当前版本的EDGE不支持此功能。
除非您有备用广告,否则请勿在真实的网站上使用。
如果您正在寻找不依赖额外标记的解决方案,则可以将背景图像应用到主体上的伪元素并进行过滤。
body { position: absolute; top: 0; bottom: 0; left: 0; right: 0; height: 100%;}body:before { content: ""; position: absolute; background: url(http://lorempixel.com/420/255); background-size: cover; z-index: -1; height: 20%; width: 20%; transform: scale(5); transform-origin: top left; filter: blur(2px);}


