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.


Ballyhoo


Posted By

masaya on 07/17/06


Tagged

css hack ie


Versions (?)


Who likes this?

6 people have marked this snippet as a favorite

mate
fatihturan
basicmagic
SpinZ
vali29
aziz


Hack CSS


Published in: CSS 


  1. @charset "UTF-8";
  2.  
  3.  
  4.  
  5. /* ----------------------------------------------------------------------
  6. WinIE7 のみ
  7. ---------------------------------------------------------------------- */
  8. *:first-child+html selector{property:value;}
  9.  
  10. /* ----------------------------------------------------------------------
  11. WinIE6 以下 & Mac IE
  12. ---------------------------------------------------------------------- */
  13. * html selector{property:value;}
  14.  
  15. /* ----------------------------------------------------------------------
  16. WinIE6 以下
  17. ---------------------------------------------------------------------- */
  18. /*\*/
  19. * html selector{property:value;}
  20. /**/
  21.  
  22. /* ----------------------------------------------------------------------
  23. MacIE のみ
  24. ---------------------------------------------------------------------- */
  25. /*\*//*/
  26. selector{property:value;}
  27. /**/

Report this snippet 

You need to login to post a comment.