InBlock.gif<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
InBlock.gif<html xmlns="http://www.w3.org/1999/xhtml">
InBlock.gif
<head>
InBlock.gif<meta content="text/html; charset=gbk" http-equiv="Content-Type" />
InBlock.gif<title>min-width/max-width控制图片缩放裁切</title>
InBlock.gif<style type="text/css">
InBlock.gifimg{border:none;display:block;}
InBlock.gifdiv
InBlock.gif{
InBlock.gif  margin:20px auto;
InBlock.gif  background-color:#f0f6f9;
InBlock.gif  border:1px solid #606669;  
InBlock.gif}
InBlock.gif#div1
InBlock.gif{
InBlock.gif  width:150px;
InBlock.gif  height:200px;
InBlock.gif  overflow:hidden;  
InBlock.gif}
InBlock.gif#div1 img
InBlock.gif{
InBlock.gif  min-width:150px;
InBlock.gif  min-height:200px;    
InBlock.gif}
InBlock.gif</style>
InBlock.gif</head>
InBlock.gif
<body>
InBlock.gif  <div id="div1">
InBlock.gif    <a href="#"><img src="test.jpg" alt="" /></a>
InBlock.gif  </div>
InBlock.gif</body>
InBlock.gif
</html>
InBlock.gif