首页 > 网站 > WEB开发 > 正文

CSS之固定大小的div中自动显示图片的中间部分

2024-04-27 15:16:18
字体:
来源:转载
供稿:网友
原图:图片展示图:

图片

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>CSS之固定大小的div中自动显示图片的中间部分</title><style type="text/css">.box {	height: 200px;	width: 200px;	overflow: hidden;	background-repeat: no-repeat;	background-position: center center;	float: left;}img {	margin-top: -50px;	margin-left: -30px;}</style></head><body><div class="box"><img src="test.jpg" /></div></body></html>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表