demianturner / sgl-docs-tickets-migration-test

0 stars 0 forks source link

PNG-transparency in Internet Explorer 6 #1576

Open demianturner opened 11 years ago

demianturner commented 11 years ago

"This must be the easiest way to get full support for PNG-transparency in Internet Explorer 6. The technique even works for PNG-transparency in CSS backgrounds. Credit goes to Angus Turnbull for creating this workaround. My hat is thoroughly tipped." - bjorkoy.com

see: http://bjorkoy.com/past/2007/4/8/the_easiest_way_to_png/

see: http://www.twinhelix.com/css/iepngfix/

modified version to handle background-repeat: http://bobdevine.com/iepngfix.htc"

''Added the following to core.php'' {{{

outer-wrapper {

<?php if (isBrowserFamily('MSIE7', '<')) { ?>
    behavior: url(<?php echo $baseUrl ?>/css/iepngfix.htc);
<?php } ?>

} }}} ''That allowed the following to work properly'' {{{

outer-wrapper {

background: url('<?php echo $baseUrl ?>/images/shadow.png') left top;
background-repeat: repeat;

} }}}