Ian Piper wrote: > Is it OK to have position: relative and float: let together in the > same style? It doesn't seem to do any harm, but...
It is perfectly ok, and is an "ordinary" fix for that particular IE/win bug. You can use 'position: relative;' and also add 'z-index;' to floats and adjust the floats layering and position that way too. Only Opera (prior to version 9) has problems with it - the older Opera-versions simply ignores 'position: relative' on floats. Example with browser-support notes: <http://www.gunlaug.no/contents/wd_chaos_03.html> Just remember that 'position: absolute' and 'position: fixed' do no work on 'floats' as such, as these 'property: values' will simply cancel out the 'float' property. Georg -- http://www.gunlaug.no ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
