码迷,mamicode.com
首页 > 其他好文 > 详细

四种垂直居中的方法

时间:2019-04-15 00:25:56      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:flex   mamicode   图片   head   items   span   enter   char   relative   

四种垂直居中的方法

  显示效果:

     技术图片   技术图片

  代码:

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <meta charset="utf-8" />
 5         <title>四种垂直居中的方法</title>
 6     </head>
 7     <body>
 8         <h1>方法一:</h1>
 9         <div style="width:200px;height:200px;border:solid blue;position:relative;">
10             <div style="width:100px;height:100px;margin: auto;  position: absolute;  top: 0; left: 0; bottom: 0; right: 0; background: red;"></div>
11         </div>
12 
13         <h1>方法二:</h1>
14         <div style="width:200px;height:200px;border:2px solid #000;display:table-cell;vertical-align:middle;text-align: center;">
15             <div style="width:100px;height:100px;display:inline-block;background-color: red;"></div>
16         </div>
17 
18         <h1>方法三:</h1>
19         <div style="width:200px;height:200px; border:2px solid #000;display:flex;justify-content:center;align-items:center;">
20             <div style="width:100px;height:100px;background-color: red;"></div>
21         </div>
22 
23         <h1>方法四:</h1>
24         <div style="width:200px;height:200px; border:2px solid #000;position:relative;">
25             <div style="width:100px;height:100px;margin:auto;position:absolute;left:50%;top:50%;margin-left: -50px;margin-top:-50px;background-color: red;"></div>
26         </div>
27     </body>
28 </html>

 

四种垂直居中的方法

标签:flex   mamicode   图片   head   items   span   enter   char   relative   

原文地址:https://www.cnblogs.com/firstflying/p/10708113.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!