我的页脚中有一个圈子Div,并希望将其居中到页脚中。 在结尾处,将连续有3个圆圈。 我的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;
}
答案 0 :(得分:1)
您可以使用display:flex
和align-items
和justify-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>