div中的内容垂直居中的五种方法

div中的内容垂直居中的五种方法
一、行高(line-height)法

如果要垂直居中的只有一行或几个文字,那它的制作最为简单,只要让文字的行高和容器的高度相同即可,比如:

1
p { height:30px; line-height:30px; width:100px; overflow:hidden; }

这段代码可以达到让文字在段落中垂直居中的效果。

二、内边距(padding)法

另一种方法和行高法很相似,它同样适合一行或几行文字垂直居中,原理就是利用padding将内容垂直居中,比如:

1
p {  padding : 20px  0 ; }

这段代码的效果和line-height法差不多。


三、模拟表格法

将容器设置为display:table,然后将子元素也就是要垂直居中显示的元素设置为display:table-cell,然后加上vertical-align:middle来实现。

html结构如下:

1
2
3
4
5
6
< div  id = "wrapper" >
    < div  id = "cell" >
        < p >测试垂直居中效果测试垂直居中效果</ p >
        < p >测试垂直居中效果测试垂直居中效果</ p >
    </ div >
</ div >

css代码:

1
2
#wrapper { display :table; width : 300px ; height : 300px ; background : #000 ; margin : 0  auto ; color : red ;}
#cell{ display : table-cell vertical-align : middle ;}

实现如图所示:

1526089883-55f692f1e4a73_articlex.png

遗憾的是IE7及以下不支持。


四、CSS3的transform来实现

css代码如下:


1
2
3
4
5
6
7
8
9
.center-vertical{
   position relative ;
   top : 50% ;
   transform:translateY( -50% );
}.center-horizontal{
   position relative ;
   left : 50% ;
   transform:translateX( -50% ); 
}


五、css3的box方法实现水平垂直居中

html代码:

1
2
3
4
5
6
7
< div  class = "center" >
  < div  class = "text" >
    < p >我是多行文字</ p >
    < p >我是多行文字</ p >
    < p >我是多行文字</ p >
  </ div >
</ div >

css代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
. center  {
   width 300px ;
   height 200px ;
   padding 10px ;
   border 1px  solid  #ccc ;
   background : #000 ;
   color : #fff ;
   margin 20px  auto ;
   display : -webkit-box;
   -webkit-box-orient: horizontal;
   -webkit-box-pack:  center ;
   -webkit-box-align:  center ;
   
   display : -moz-box;
   -moz-box-orient: horizontal;
   -moz-box-pack:  center ;
   -moz-box-align:  center ;
   
   display : -o-box;
   -o-box-orient: horizontal;
   -o-box-pack:  center ;
   -o-box-align:  center ;
   
   display : -ms-box;
   -ms-box-orient: horizontal;
   -ms-box-pack:  center ;
   -ms-box-align:  center ;
   
   display : box;
   box-orient: horizontal;
   box-pack:  center ;
   box-align:  center ;
}

结果如图:

1049451428-55f6cb1c9b669_articlex.png



-----------------------------------------------------
转载请注明来源此处
原地址:http://blog.mn886.net/chenjianhua/show/0ecd71c7db09/index.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值