x
 
<!DOCTYPE html>
<html>
<body>
<p><b>注释:</b>Internet Explorer 9 及更早版本不支持 SVG 滤镜。</p>
<svg height="140" width="140">
  <defs>
    <filter id="f1" x="0" y="0" width="200%" height="200%">
      <feOffset result="offOut" in="SourceGraphic" dx="20" dy="20" />
      <feGaussianBlur result="blurOut" in="offOut" stdDeviation="10" />
      <feBlend in="SourceGraphic" in2="blurOut" mode="normal" />
    </filter>
  </defs>
  <rect width="90" height="90" stroke="green" stroke-width="3" fill="yellow" filter="url(#f1)" />
  抱歉,您的浏览器不支持内联 SVG。
</svg>
</body>
</html>