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

相关文章:

  • 2021-12-30
  • 2022-03-05
  • 2021-09-06
  • 2021-07-13
  • 2022-12-23
猜你喜欢
  • 2021-11-22
  • 2021-09-12
  • 2021-07-22
  • 2021-12-26
相关资源
相似解决方案