test1.drop-shadow.svg 373 B

123456789
  1. <svg width="200" height="100">
  2. <defs>
  3. <filter id="dropShadow">
  4. <feDropShadow in="SourceGraphic" dx="2" dy="1" stdDeviation="3" flood-opacity="0.8" flood-color="#0f0" width="200%" height="200%"/>
  5. </filter>
  6. </defs>
  7. <rect width="200" height="100" fill="#fff" />
  8. <rect x="50" y="25" width="100" height="50" fill="#f00" filter="url(#dropShadow)" />
  9. </svg>