码迷,mamicode.com
首页 > 其他好文 > 详细

图片垂直居中在中间

时间:2015-07-22 18:19:19      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>图片垂直居中在中间</title>
</head>
<style type="text/css">
.war {
    width:100%;
    height:100%;
    overflow:hidden;
    display:-webkit-box;
    -webkit-box-align:center;
    -webkit-box-pack:center;
    display:-ms-flexbox;
    -ms-flex-pack:center;
    -ms-flex-align:center;
    position:absolute;
    position:fixed;
    top:0;
    right:0;
    left:0;
    bottom:0;
}
.war img {
    max-height:100%;
    max-width:100%;
}
</style>

<body>
<div class="war"> <img src="image/2.jpg"> </div>
</body>
</html>

 

图片垂直居中在中间

标签:

原文地址:http://www.cnblogs.com/yjhua/p/4668027.html

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