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

图片在DIV中垂直居中的显示方法

时间:2018-01-12 14:16:01      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:垂直居中   center   type   vertica   100%   ica   block   inline   pad   

方法一:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>CSS 图片在DIV中垂直居中的显示方法</title>
        <style type="text/css">
            *{
                margin: 0;
                padding: 0;
            }
            .juzhong{
                width: 400px;
                height: 400px;
                display: flex;
                float: left;
                justify-content: center;/*在主轴上的对齐*/
                align-items: center;/*在交叉轴上中心点的对齐*/
            }
            /*img{
                width: 100%;
            }*/
        </style>
    </head>
    <body>
        <div class="juzhong">
            <img src="..."/>
        </div>
        <div class="juzhong">
            <img src="..."/>
        </div>
    </body>
</html>

方法二:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>CSS 图片在DIV中垂直居中的显示方法</title>
        <style type="text/css">
            *{
                margin: 0;
                padding: 0;
            }
            .juzhong{
                width: 400px;
                height: 400px;
                float: left;
                text-align: center;
            }
            .juzhong span{
                height: 100%;
                display: inline-block;
                vertical-align: middle;
            }
            img{
                vertical-align: middle;
            }
            /*文字超出部分省略号*/
            .content div{
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        </style>
    </head>
    <body>
        <div class="juzhong">
            <span></span><img src="..."/>
        </div>
        <div class="juzhong">
            <span></span><img src="..."/>
        </div>
    </body>
</html>

 

图片在DIV中垂直居中的显示方法

标签:垂直居中   center   type   vertica   100%   ica   block   inline   pad   

原文地址:https://www.cnblogs.com/congxiu/p/css.html

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