We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Posted By

savintsev on 05/19/09


Tagged

css IE8 css-hacks


Versions (?)


Who likes this?

5 people have marked this snippet as a favorite

jfherring
ptah
defvibes
nightowl
robksawyer


IE8 CSS-hacks


Published in: CSS 


  1. 1. Fast solution:
  2. .ie8only { color /*\**/: #fff\9 }
  3. In Standards Mode only.
  4.  
  5. 2. Best solution:
  6. In separate file "ie.css" (for ie only):
  7. html>/**/body #id { property: value; }
  8.  
  9. IE 6: * html
  10. IE 7: *+html

Report this snippet 

You need to login to post a comment.