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

实现图片居中

时间:2018-06-01 10:54:47      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:ext   css   ica   margin   mon   back   osi   tps   htm   

    1. 方法一:
<style type="text/css">
    *{margin: 0;padding:0;}
    div{
        width:150px;
        height: 100px;
        position: relative;
        border:1px solid #000;
    }
    img {
        width: 50px;
        height: 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -25px; /* 高度的一半 */
        margin-left: -25px; /* 宽度的一半 */
    }
</style>
  1. 方法二:
style type="text/css">
    *{margin: 0;padding: 0;}
    div{
        width:150px;
        height: 100px;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        border:1px solid #000;
    }
    img {
        width: 50px;
        height: 50px;
    }
</style>

  原文链接:https://blog.csdn.net/DreamFJ/article/details/68921957

 

实现图片居中

标签:ext   css   ica   margin   mon   back   osi   tps   htm   

原文地址:https://www.cnblogs.com/xiaoxiaoaimi/p/9119981.html

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