码迷,mamicode.com
首页 > Web开发 > 详细

css控制图片上下居中,超出部分隐藏

时间:2017-08-18 14:35:17      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:abs   block   osi   relative   htm   auto   ati   idt   over   

<!DOCTYPE html>

<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
img{
width: 100%;
display: block;
}
div{
width: 600px;
height: 600px;
border: 1px solid red;
text-align: center;
overflow: hidden;
position: relative;
}
img{
position: absolute;
width: 100%;
top: 0;
bottom: 0;
left: 0;
margin: auto;
}
</style>

</head>
<body>
<div><img src="img/a.jpg" /></div>
</body>
</html>

css控制图片上下居中,超出部分隐藏

标签:abs   block   osi   relative   htm   auto   ati   idt   over   

原文地址:http://www.cnblogs.com/weiluguo/p/7389122.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!