[CSS] Transparency in IE

CSS2 - opacity says that to get transparency to work in Internet Explorer you must do…

filter: alpha(opacity=50);
Note that an element must have layout for a filter to work.

What does the second line mean? What is a “layout”?