页脚中心(圆形)分区

时间:2019-01-26 22:24:30

标签: html css center

我的页脚中有一个圈子Div,并希望将其居中到页脚中。 在结尾处,将连续有3个圆圈。 How it looks 我的CSS:

.circle {
  height: 50px;
  width: 50px;
  background-color: rgba(0, 0, 0, 0.90);
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
}

footer {
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: green;
}

1 个答案:

答案 0 :(得分:1)

您可以使用display:flexalign-itemsjustify-content使其在垂直和水平方向上对齐。

body, html {
  padding: 0;
  margin: 0;
}
footer {
  width: 100%;
  background-color: #dedede;
  border-radius: 5px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: black;
}
<footer>
<div class="circle"></div>
</footer>