1024让前端飞Web前端之路

图片在div垂直水平居中兼容解决方案

2016-12-08  本文已影响45人  圆梦人生

来源:http://itssh.cn/post/935.html

图片在div垂直水平居中兼容解决方案:
案例:

<!DOCTYPE HTML>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="apple-mobile-web-app-capable" content="yes" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
        <title>图片在div垂直居中</title>
        <!-- 
            @author:sm
            @email:sm0210@qq.com
            @desc:图片在div垂直居中
         -->
        <style type="text/css">
            * {
                margin: 0;
                padding: 0;
            }
            /*
                
            */
            .imageInfo {
                border: 1px solid red;
                width: 400px;
                height: 400px;
                margin: 0 auto;
                overflow: hidden;
                text-align: center;
                
                display: block;
                vertical-align: middle;
            }
            .imageInfo * {
                vertical-align: middle;
            }
            .imageInfo span {
                display: inline-block;
                height: 100%;
                width: 1px;
            }
        </style>
        <!--[if lt IE 8]>
        <style>
            .wraptocenter span {
                display: inline-block;
                height: 100%;
            }
        </style>
        <![endif]-->
    </head>
    <body>
        <div class="imageInfo">
            <span></span>![](images/1.jpg)
        </div>
        
    </body>
    <!--  -->
</html>

效果:

Paste_Image.png

来源:http://itssh.cn/post/935.html

上一篇 下一篇

猜你喜欢

热点阅读