The src property has no default and must be defined for this filter to affect the object's display.
Transparency for PNG images is respected during text selection. This means the user can select content that is displayed behind the fully transparent region of a PNG image.
The object that the filter is applied to must have layout before the filter effect will display. You can give the object layout by setting the height or width property, setting the position property to absolute, setting the writingMode property to tb-rl, or setting the contentEditable property to true.
In standards mode, empty div elements do not display. If your filtered elements do not show up, make sure you set the div's height and width property to the size of your image, or fill the div with a non-breaking space ( ). You can test your page under different document modes by using the Developer Tools on Windows Internet Explorer 8.
You can assign multiple filters or transitions to an object by declaring each in the filter property of the object. The following div declaration assigns two filters and a Wheel transition to a div element.
<DIV STYLE="width:100%; filter:
progid_DXImageTransform.Microsoft.MotionBlur(strength=13, direction=310)
progid_DXImageTransform.Microsoft.Blur(pixelradius=2)
progid_DXImageTransform.Microsoft.Wheel(duration=3);">
Blurry text with smudge of gray.</div>
When multiple filters are applied to an object, each filter is processed in source order, with the exception of
procedural surfaces, which are computed first. To emphasize a filter's effect, place it last in source order or on the object's parent. Always place transitions last in source order.