Does IE 7/8/9 have a issue with width ? Width {600px;} works fine in FF/chrome for a <div>
Is that your actual formatting? “width{600;}” is incorrect. Something like div {width:600px;} is more like it. Maybe your problem has something to do with that.
#bodypara {height:150px; width:600px;padding:125px 200px;}
I tried a *.html hack *+html #bodypara with min-width didn’t solve it in IE. It’s a simple page I don’t want to add a condition for IE, if I turn off {body: 600px} with IE Web Dev toolbar the problem is fixed so it’s related to that one rule.
Fixed removing the width:600 for IE solved it