PNG Hack / Fix для IE 6 - CSS-хитрости

Anonim

Для фоновых изображений CSS

.yourselector ( width:200px; height:100px; background: url(/folder/yourimage.png.webp) no-repeat; _background:none; _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/folder/yourimage.png.webp',sizingMethod='crop'); )

Не может использоваться с повторением, требует фиксированной высоты.

Для встроенных изображений HTML

img, .png.webp ( position: relative; behavior: expression((this.runtimeStyle.behavior="none")&&(this.png.webpSet?this.png.webpSet=true:(this.nodeName == "IMG" && this.src.toLowerCase().indexOf('.png.webp')>-1?(this.runtimeStyle.backgroundImage = "none", this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "', sizingMethod='image')", this.src = "images/transparent.gif"):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url("','').replace('")',''), this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.origBg + "', sizingMethod='crop')", this.runtimeStyle.backgroundImage = "none")),this.png.webpSet=true)); )

Для этого требуется прозрачное изображение GIF размером 1x1px.