IFrame 透明背景,让 IE下压缩变形有图片变得更清晰,让 IE6支持min-height
IFrame 透明背景
from 阿当个人空间 by cly84920
/* in the iframe element */
<iframe src="content.html" allowTransparency="true">
</iframe>
/* in the iframe docuement, in this case content.html */
body {
background-color:transparent;
}
让 IE下压缩变形有图片变得更清晰
from 阿当个人空间 by cly84920
img { -ms-interpolation-mode: bicubic; }
让 IE6支持min-height
from 阿当个人空间 by cly84920
selector { min-height:500px;
height:auto !important;
height:500px;
}