现在的位置: 首页 > 综合 > 正文

IFrame 透明背景,让 IE下压缩变形有图片变得更清晰,让 IE6支持min-height

2012年04月27日 ⁄ 综合 ⁄ 共 380字 ⁄ 字号 评论关闭

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;
}  

抱歉!评论已关闭.