Edit This Code:
See Result »
<!DOCTYPE html> <html> <body> <p><strong>Note:</strong> Internet Explorer 9 and earlier versions do not support SVG filters.</p> <svg height="140" width="140"> <defs> <filter id="f1" x="0" y="0" width="200%" height="200%"> <feOffset result="offOut" in="SourceAlpha" 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)" /> Sorry, your browser does not support inline SVG. </svg> </body> <!-- Mirrored from www.w3schools.com/svg/tryit.asp?filename=trysvg_feoffset3 by HTTrack Website Copier/3.x [XR&CO'2014], Sun, 13 Mar 2016 11:03:26 GMT --> </html>
Result: