oliver wrote: > Found this, but not sure yet if this is still something ongoing: > > http://blogs.msdn.com/ie/archive/2007/04/17/ie7-virtual-pc-image-and-ie6-virtual-pc-image-refresh.aspx > > I have read that the way to go is VM's because multiple IE's just too > brittle. The above would be great. > Oliver
Stop listening to all those experiences with Multiple IE. Every time a new version of IE is released, it rewrite the IE version vectors. This is what should happen. Multiple IE basically hacks the registry with an existing IE version so IE conditional comment work as expected. I myself do not see anything inside condition comments that are targeting any version less than IE8 (with IE7 ComMode) since I have not re-installed Multiple IE. I prefer it this way. Looking at this page, http://pubsub.sourceforge.net/ I see no difference in rendering between FF and IE6. To add CC to your code just to send this, div.localsidebarpanel { width: 163px; } to any version prior to IE8 can be better coded in your css as. * html div.localsidebarpanel { width: 163px; /* For IE6- */ } *:first-child+html div.localsidebarpanel { width: 163px; /* For IE7 */ } -- Alan http://css-class.com/ ______________________________________________________________________ css-discuss [[email protected]] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
