Forum Moderators: not2easy
Its for a variety of reports, and structurally/semantically the caption is fine, but visually it should be at the top of the page like a title.
The container div has position:relative; so using pos:abs on the caption should position it in relation to that, and it does. except for ie. :(
Any ideas?
ta
ben
I guess IE might be positioning the absolute box in reference to the normal flow position of the containing element, rather than it's adjusted relative position.
Can you use either the Tan Hack:
* html yourElement { blah: blah; } <!--[if IE]>
yourElement { blah: blah; }
<![endif]-->
hth
Andy
Conditionals dont help, as there is no additional css i can put in that seems to chnage its behaviour.
However, im considering adjusting the layout, so it maybe a moot point.
cheers