Z-index doesn't work on objects?

windows

Guest
Hi!
I want to place a <table> in front of an <object>. I set the z-index of the table to 2 and the object's to 1 but the object is still in front of the table.
Do you know how to solve this problem?
thx in advance
Chrisi

P.S.: Both, table & object are position: absolute;i believe objects usually have properties of windows. z-index only works within a window, not among them as they arent html documents. from my limited experiences, ie renders objects above the html element alwaysYes, this applies to certain form elements (such as <select>), and most plugins/objects. The only workaround I know of is to hide the object manually when something covers it - see this article (<!-- m --><a class="postlink" href="http://www.webreference.com/programming/javascript/form/">http://www.webreference.com/programming ... ript/form/</a><!-- m -->) for more details.

AdamThanks for your answer
I got to say that this was what I was afraid of. Because the object is much bigger than the table .. which means hiding it is not a very effective way :/
 
Back
Top