且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在div的中间居中放置图像?

更新时间:2022-05-10 09:14:06

简单易行的方法,

.test {
  background-color: orange;
  width: 700px;
  height: 700px;
  display:flex;
  align-items:center;
  justify-content:center;
}

<div class="test">
<img src="http://via.placeholder.com/350x150">
</div>