Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> <svg width="150" height="150"> <defs> <filter id="filter" x="0" y="0" width="150%" height="150%"> <feOffset result="offOut" in="SourceGraphic" dx="30" dy="30" /> <feBlend in="SourceGraphic" in2="offOut" mode="normal" /> </filter> </defs> <rect width="110" height="110" stroke="purple" stroke-width="5" fill="pink" filter="url(#filter)" /> Sorry, your browser doesn't support inline SVG. </svg> </body> </html>