yule-前端/后台开发

经验积累之 兼容IE6

IE6下图片缩放失真解决方法
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--[if IE 6]>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml">
<![endif]-->
<html xmlns="http://www.w3.org/1999/xhtml">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head>
<title>VML</title>
<!--[if IE 6]>
<style type="text/css">
.vml{ behavior: url(#default#VML);}
.iefix {display:none!important;}
</style>
<![endif]-->
<style type="text/css">
img.iefix {-ms-interpolation-mode: bicubic;}
</style>
</head>
<body>
<!--[if IE 6]>
<v:image src="1.jpg" class="vml" style="width:500px;height:400px;display:block" />
<![endif]-->
<img src="1.jpg" class="iefix" style="width:500px;height:400px;display:block" />
</body>
</html>
IE6PNG背景透明
<!--[if IE 6]>
<script type="text/javascript" src="/js/DD_belatedPNG.js" ></script>
<script type="text/javascript">
DD_belatedPNG.fix('.Address dl dd');
</script>
<![endif]-->
DD_belatedPNG.js