views:

48

answers:

1

Dear Sir,

I have the following code:

 Stock Update 

Update Paper

There is a TD inside which there is a DIV and inside DIV there is a Table. DIV's default style is display:none. On mouseover TD, the div should appear like a popup in a given position. But it is not happening. DIV is appearing in the same TD. How to make DIV's position independent of TD.

Thank you very much for your help in advance.

+2  A: 

position: absolute;

You may also want to specify the direction properties (top, right, bottom, left), but try it without those first to see how it looks. If you use them, you may want to use position: relative on the parent to position the absolute child relative to it (the same works with any position value that isn't "static", the default).

Anonymous
Thank you very much Sir. It has solved my problem.
P S R Prasad
If he solved your problem, click the "accept answer" checkbox to the left.
Erik