图片在div里面如何居中
Posted feiwenstyle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了图片在div里面如何居中相关的知识,希望对你有一定的参考价值。
<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里面如何居中的主要内容,如果未能解决你的问题,请参考以下文章