Tue, 2009-12-01 18:27
The problem is that the div C isn't showed full in thispage
The cause is the sum of this 3 points
- overflow:hidden; in .a
- position:relative; in .b
- position:absolute; in .c
Examples:
- .a without overflow:hidden; show this
- .b without position:relative; show this
- .b without position:relative; show this
The best is the first example although It's enough if the div C is showed full and with position absolute
But I can't use any solution of this becouse I'm working with a design impost and:
- the solution 1 and 2 change part of design that I can't touch
- the solution 3 don't move the div C with the scroll and I need position absolute for make draggable this div with javascript
Too I can't change the nesting
What can I do?
- Change the class .C less the position absolute
- Put new tags or styles bewten the div B and C, or into the div C
- ... I don't know...
do someone hava a idea?