Visual problemathics in IE 6.0

Let’s take an example of the object which staying on the same position on your page. This function is supported in IE 6.0 and Firefox browser. Unfortunately in Opera doesn’t - object slightly moving. Primary used positioning of style is - position: absolute (pro IE), or position: fixed (for all standard browsers). Firefox can work with the fix object itself, but for Explorer we have to use small script. Script which managing event scrolling, and at this time re-counting  the position fixed object and re-render that.

For ideal understanding I’ve prepare one small example of source code:

#idexam {position: fixed;} /* for Firefox */
#idexam {position: "absolute";} /* for IE */
#idexam {top: 90px; left: 80%} /* other behavior
(except position) */
p {width: 70%} /* it's not that important just for
text which floating close to the object*/

Hope you’ve enjoyed.


About this entry