Posted by Toby Inkster on 07/07/06 07:27
sunilp wrote:
> This is working in IE.
> In Mozilla firefox, CSS expression are not supported so this is not
> working.
You've got more of a problem than that. CSS "expressions" are a Microsoft
invention. They're not supported by *any* other browsers.
> How do i simulate this behaviour for Mozilla firefox?
Use Javascript.
document.body.onresize = function() {
rttopdiv = someCodeToSelectThisElement();
rttopdiv.left = document.body.scrollLeft + document.body.clientWidth - 35;
rttopdiv.top = document.body.scrollTop;
}
--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact
[Back to original message]
|