web -- CSS 图片宽高不固定的垂直居中方法

CSS图片宽高不固定的垂直居中方法

<style>
    body{padding:0;margin:0;position:absolute;height:100%;width:100%;}
    .demo{display:table;width:100%;height:100%;}
    .demo p{display:table-cell;vertical-align:middle;}
    .demo p img{width:100%;}
</style>
</head>
<body>
     <div class="demo">
        <p><img src="1.jpg"></p>
     </div>

</body>

原文地址链接:http://www.daqianduan.com/2733.html

posted @ 2015-11-26 17:58  以神之名  阅读(1067)  评论(1编辑  收藏  举报