小的div在大的div中垂直居中
Posted 与f
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小的div在大的div中垂直居中相关的知识,希望对你有一定的参考价值。
方法一:
1、代码:
<div style="width:200px;height:200px;border:solid blue;position:relative;"> <div style="width:100px;height:100px;margin: auto; position: absolute; top: 0; left: 0; bottom: 0; right: 0; background: red;"></div> </div>
方法二:
1、代码:
<div style="width:200px;height:200px;border:2px solid #000;display:table-cell;vertical-align:middle;text-align: center;"> <div style="width:100px;height:100px;display:inline-block;background-color: red;"></div> </div>
方法三:
1、代码:
<div style="width:200px;height:200px; border:2px solid #000;display:flex;justify-content:center;align-items:center;"> <div style="width:100px;height:100px;background-color: red;"></div> </div>
方法四:
1、代码:
<div style="width:200px;height:200px; border:2px solid #000;position:relative;"> <div style="width:100px;height:100px;margin:auto;position:absolute;left:50%;top:50%;margin-left: -50px;margin-top:-50px;background-color: red;"></div> </div>
以上是关于小的div在大的div中垂直居中的主要内容,如果未能解决你的问题,请参考以下文章
css布局问题 两个div我想让小div在大div中水平和垂直都居中