html – 垂直和horinzontally对齐容器中的多个div子

前端之家收集整理的这篇文章主要介绍了html – 垂直和horinzontally对齐容器中的多个div子前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我目前有以下代码

我试图垂直和水平对齐div框,以便出现更多的框,它仍然在容器中垂直和水平居中.例如:

enter image description here


适用于容器的4张卡片的示例

enter image description here


12个卡在容器中溢出的情况示例

enter image description here


使用不适合容器的卡片的示例
最佳答案
DEMO

HTML

CSS

.container {
  position: relative;
  display:table;
  background: red;
  width:100%;
  height: 100%; /* auto is default,you can have ur height here */
}

.container-wrapper {
  display: table-cell;
  margin:auto;
  text-align:center;
  font-size:0;
  width:90%;
  height:90%;
  vertical-align:middle;
}

.card {
  display: inline-block;
  height:100px;
  width:100px;
  border: 1px solid #ddd;
  background: #eee;
  margin:10px;
}

DEMO 2 with some height of the container

原文链接:https://www.f2er.com/css/426948.html

猜你在找的CSS相关文章