87,994
社区成员
发帖
与我相关
我的任务
分享
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title> 页面名称 </title>
<style type="text/css">
#box {
overflow: hidden;
width: 100px;
height: 100px;
}
#box img {
width: 320px;
height: 320px;
margin-left: -100px;
margin-top: -200px;
}
</style>
</head>
<body>
<div id="box">
<img src="http://avatar.csdn.net/5/6/7/1_jslang.jpg">
</div>
</body>
</html>
[/quote] 效果不错,谢谢了。
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title> 页面名称 </title>
<style type="text/css">
#box {
overflow: hidden;
width: 100px;
height: 100px;
}
#box img {
width: 320px;
height: 320px;
margin-left: -100px;
margin-top: -200px;
}
</style>
</head>
<body>
<div id="box">
<img src="http://avatar.csdn.net/5/6/7/1_jslang.jpg">
</div>
</body>
</html>