首页 > 其他 > 详细

图片在div里面如何居中

时间:2018-12-27 12:24:35      阅读:122      评论:0      收藏:0      [点我收藏+]

<style type="text/css">
body {
background-color: #ececec;
}

.d1 {
text-align: center;
position: relative;
height: 200px;
}

.d2 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
</style>
</head>

<body>
<div class="d1">
<span class="d2">
<img width="100px" height="100px" src="../image/api_1.png" >
<p>ssss</p>
</span>
</div>

图片在div里面如何居中

原文:https://www.cnblogs.com/feiwenstyle/p/10184133.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!