display:table-cell 居中及其使用

一、例子:

<html>
<meta charset="utf8"> <style> .Absolute-Center { display: table-cell; width: 100px; height: 100px; border:1px solid red; text-align:center; vertical-align:middle; } </style> <body> <div class="Absolute-Center"> <p>居中</p> </div> </body> </html>

-----------------起作用

<html>
<meta charset="utf8"> <style> .outer{ width:300px; height:500px; border:1px solid red; position:relative; } .Absolute-Center { display: table-cell; position:absolute; margin:auto; top:0px; bottom:0px; left:0px; right:0px; width: 100px; height: 100px; border:1px solid red; text-align:center; vertical-align:middle; } </style> <body> <div class="outer"> <div class="Absolute-Center"> <p>居中</p> </div> </div> </body> </html>
---------------无效
原因:

position: absolute; display: table-cell; equals display: block; position: absolute;. 1#

And vertical-align only applies to inline/table-cell elements.


修改:
<div class="outer">
  <div class="center"> <div class="center-inner"> <p>居中</p> </div> </div> </div>
.outer{
      width:300px;
      height:500px; border:1px solid red; position:relative; } .center { position: absolute; margin: auto; top:0px; bottom:0px; left:0px; right:0px; width: 100px; height: 100px; border:1px solid red; } .center-inner { display: table; height: 100%; width: 100%; } .center p { display: table-cell; text-align:center; vertical-align:middle; } 
 
 

二、table-cell的使用:http://www.zhangxinxu.com/

转载于:https://www.cnblogs.com/fengxiaopiaoer/p/7525473.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值