小的div在大的div中垂直居中

那年仲夏 提交于 2020-02-15 08:43:11

方法一:

1、代码:

1 <div style="width:200px;height:200px;border:solid blue;position:relative;">
2     <div style="width:100px;height:100px;margin: auto;  position: absolute;  top: 0; left: 0; bottom: 0; right: 0; background: red;"></div>
3 </div>

2、效果图:

方法二:

1、代码:

1 <div style="width:200px;height:200px;border:2px solid #000;display:table-cell;vertical-align:middle;text-align: center;">
2     <div style="width:100px;height:100px;display:inline-block;"></div>
3 </div>

2、效果图:

方法三:

1、代码:

1 <div style="width:200px;height:200px; border:2px solid #000;display:flex;justify-content:center;align-items:center;">
2     <div style="width:100px;height:100px;"></div>
3 </div>

2、效果图:

方法四:

1、代码:

1 <div style="width:200px;height:200px; border:2px solid #000;position:relative;">
2     <div style="width:100px;height:100px;margin:auto;position:absolute;left:50%;top:50%;margin-left: -50px;margin-top:-50px;"></div>
3 </div>

2、效果图:

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!