Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What the hell is wrong with IE8? 2

Status
Not open for further replies.

1DMF

Programmer
Jan 18, 2005
8,795
GB
Is it me or is IE8's rendering engine a downgrade from IE7 rather than an improvement?

Things just won't obey CSS values, images are vanishing and now i can't get dashed borders to show correctly.

The attached image shows IE8 rendering vs firefox , on IE8 only part of the bordering is dashed and some is solid.

Is it possible to fix this?

"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."

"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!
 
yup i'm using border collapse, and I also realised I was being a dumb ass! - I know nothing new there [lol]

the browser was in compatability mode so it wasn't strictly IE8.

I'm not sure what that compatability option does, is it like turning it into IE7?

it's fine in IE8 non-compatability mode.

I can't beleive the difference between IE8 & IE7 , it's driving me nuts - :-(

I just found my form didn't look right in IE7 & Compat mode if you have a clearing div of
Code:
clear:both;
float:left;

All the floated form elements were squashed to one per line instead of the label and form element side by side.

I had to add
Code:
width:100%;
to the clearing div CSS to fix the problem, but divs are by nature block elements 100% wide, aren't they?

Why didn't I become a plasterer or plumber I ask myself!

"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."

"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!
 
Got ya,

I'd floated it becasue the elements inside were floated and I thought floating elements takes them out of the normal document flow, which is where you end up with divs that have no content in them.



"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."

"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top