菜单
  

    收集了几种利用css进行元素的垂直居中的方法,每一种适用于不同的情况,在实际的使用过程中选择某一种方法即可
    一、行高(line-height)法

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

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

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

    二、内边距(padding)法

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

    p { padding:20px 0; }

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

    三、模拟表格法

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

    html结构如下:

    <p id="wrapper">

        <p id="cell">

            <p>测试垂直居中效果测试垂直居中效果</p>

            <p>测试垂直居中效果测试垂直居中效果</p>

        </p>

    </p>

    css代码:

    #wrapper {display:table;width:300px;height:300px;background:#000;margin:0 auto;color:red;}

    #cell{display:table-cell; vertical-align:middle;}

    实现如图所示:

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

    四、CSS3的transform来实现

    css代码如下:

    .center-vertical{

      position: relative;

      top:50%;

      transform:translateY(-50%);

    }.center-horizontal{

      position: relative;

      left:50%;

      transform:translateX(-50%); 

    }

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

    html代码:

    <p class="center">

      <p class="text">

        <p>我是多行文字</p>

        <p>我是多行文字</p>

        <p>我是多行文字</p>

      </p>

    </p>

    css代码:

    .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;

    }

     结果如图:

     六:flex布局(2018/04/17补充)

    html代码:

    <p class="flex">

        <p>

           <p>我是多行文字我是多行文字我是多行文字我是多行文字</p>

          <p>我是多行文字我是多行文字我是多行文字我是多行文字</p>

  1. 上一篇:雷霄骅猝死事件如何看
  2. 下一篇:校企合作课程及过程考核课程调查问卷表
  1. 三重缓冲有必要开吗三重缓冲

  2. 人人贷在互联网平台下借贷风险研究

  3. Smith预估器无线网络的拥塞...

  4. 伊宁市土地利用特征问题与对策

  5. 物流企业技术效率国内外研究现状和参考文献

  6. 激光测距中激光接收电路的设计

  7. 柯西中值定理的证明及应用

  8. 中小企业融资中银行的作用机制分析

  9. 多媒体教学的优势文献综述

  10. STC12C5A60S2单片机室内环境...

  11. Hypermesh+UG轻卡前桥的建模与有限元分析

  

About

优尔论文网手机版...

主页:http://www.youerw.com

关闭返回