块级元素水平和垂直方向居中的方式
Posted hg845740143
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了块级元素水平和垂直方向居中的方式相关的知识,希望对你有一定的参考价值。
块级元素水平和垂直方向居中的方法一共三种
1.先设置块级元素的宽高,然后利用定位和外边距将元素在水平和垂直方向上居中
示例:
<style>
.father{
width: 100%;
height: 500px;
position: relative;
}
.son{
width: 100px;
height: 100px;
position: absolute;
top: 50%;
left: 50%;
margin-left: -50px;
margin-top: -50px;
background-color: red;
}
</style>
<body>
<div class="father">
<div class="son"></div>
</div>
</body>
2.已知元素宽高,然后将父级元素设置为弹性盒,然后设置子级元素的外边距为自动
示例:
<style>
.father{
width: 100%;
height: 500px;
display: flex;
}
.son{
width: 100px;
height: 100px;
margin: auto;
background-color: red;
}
</style>
<div class="father">
<div class="son"></div>
</div>
</body>
3.已知元素宽高,然后利用定位和偏移量来设置元素水平和垂直方向上居中
示例:
<style>
.father{
width: 100%;
height: 500px;
position: relative;
}
.son{
width: 100px;
height: 100px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
background-color: red;
}
</style>
<div class="father">
<div class="son"></div>
</div>
</body>
以上是关于块级元素水平和垂直方向居中的方式的主要内容,如果未能解决你的问题,请参考以下文章