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

frakim on 01/13/08


Tagged

fix ie textmate background transparence


Versions (?)


Who likes this?

2 people have marked this snippet as a favorite

jonhenshaw
stoker


Fix iE Background Transparence: ie_style.css


Published in: CSS 


URL: http://imperialcode.com/css/ie_styles.css

Fix probleme de transparence avec le background sous iE. Pour "crop" ou "image".


  1. */
  2. <!--[if lt IE 7]>
  3. <script defer type="text/javascript" src="js/pngfix.js"></script>
  4. <link rel="stylesheet" href="http://imperialcode.com/css/ie_styles.css" type="text/css" media="screen" />
  5. <![endif]-->
  6. /*
  7.  
  8. #footerLinksInner ul.links li.linksHeaderBlog {
  9. background: none;
  10. filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, src=images/pencil.png, sizingMethod=crop);
  11. }
  12.  
  13. #footerAchat {
  14. background: none;
  15. filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, src=images/glass_block.png, sizingMethod=image);
  16. }
  17.  
  18. #recentActivity ul li.new {
  19. background: none;
  20. filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, src=images/image_tab_new.png, sizingMethod=crop);
  21. }
  22.  
  23. .listing .image.new {
  24. background: none;
  25. filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, src=images/image_tab_new_medium.png, sizingMethod=crop);
  26. }
  27.  

Report this snippet 

You need to login to post a comment.