1. 程式人生 > >css控制圖片上下居中,超出部分隱藏

css控制圖片上下居中,超出部分隱藏

制圖 pos tex oct doc img display center doctype

<!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控制圖片上下居中,超出部分隱藏