小的div在大的div中垂直居中 方法一: 1、代码: 1 <div style="width:200px;height:200px;border:solid blue;position:rela

来源:互联网 发布:速达软件怎么样 编辑:程序博客网 时间:2024/04/29 08:40

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

方法一:

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;background-color: red;"></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;background-color: red;"></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;background-color: red;"></div>3 </div>

2、效果图:


http://www.cnblogs.com/gwcyulong/p/6251342.html

阅读全文
0 0