且构网

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

如何在div水平和垂直中心图像

更新时间:2022-10-16 09:17:44

Here is a tutorial for how to center the images vertically and horizontally in a div.

Here is what you are looking for:

.wraptocenter {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 200px;
  height: 200px;
  background-color: #999;
}
.wraptocenter * {
  vertical-align: middle;
}

<div class="wraptocenter">
  <img src="http://www.brunildo.org/thumb/tmiri2_o.jpg">
</div>

相关阅读

技术问答最新文章