zoukankan      html  css  js  c++  java
  • div垂直居中

    引:http://www.haorooms.com/post/css_div_juzhong

    固定高宽div垂直居中

    enter image description here

    如上图,固定高宽的很简单,写法如下:

    position: absolute;
    left: 50%;
    top: 50%;
    200px;
    height:100px;
    margin-left:-100px;
    margin-top:-50px;

    其中margin-left为宽一半数值的负数,margin-top为高一半数值的负数。

    不固定高宽div垂直居中的方法

    1.方法一:伪元素(看不见的伪元素)和 inline-block / vertical-align 可以搞定居中

    <div class="block" style="height: 300px;">
        <div class="centered">
            <h1>haorooms案例题目</h1>
            <p>haorooms案例内容,haorooms案例内容haorooms案例内容haorooms案例内容haorooms案例内容haorooms案例内容haorooms案例内容haorooms案例内容haorooms案例内容</p>
        </div>
    </div>
    
    .block {
      text-align: center;
    }
    
    /* The ghost, nudged to maintain perfect centering */
    .block:before {
      content: ' ';
      display: inline-block;
      height: 100%;
      vertical-align: middle;
    }
    
    /* The element to be centered, can
       also be of any width and height */ 
    .centered {
      display: inline-block;
      vertical-align: middle;
    }

    2.方法二:div样式设置成table

    <div class="something-semantic">
       <div class="something-else-semantic">
           Unknown stuff to be centered.
       </div>
    </div>
    .something-semantic {
       display: table;
        100%;
    }
    .something-else-semantic {
       display: table-cell;
       text-align: center;
       vertical-align: middle;
    }

    <!--[if lte IE 7]>
    <style type="text/css">
    div.
    something-semantic{ position:relative; }
    div.something-else-semantic{ position:absolute; left:50%;top:50%; }
     </style> <![endif]-->

    3.css3中使用 Flexbox 的居中布局

    .vertical-container {
      height: 300px;
      display: -webkit-flex;
      display:         flex;
      -webkit-align-items: center;
              align-items: center;
      -webkit-justify-content: center;
              justify-content: center;
    }

    在父元素上面

  • 相关阅读:
    Linq的Except
    BZOJ 1324 Exca神剑 最小割
    先学习Oracle 11g的Automatic Diagnostic Repository新功能
    NYOJ 300 &amp;&amp; hdu 2276 Kiki &amp; Little Kiki 2 (矩阵高速功率)
    V微软S2015下载:开展Win10/Linux/iOS多平台软件
    LeetCode Length of Last Word
    QT 打开文件对话框汇总
    取缔Chrome装载电脑管家的广告过滤脚本代码
    三种常见的图像处理双三次插值算法
    Best Time to Buy and Sell Stock I,II,III [leetcode]
  • 原文地址:https://www.cnblogs.com/myzy/p/6089501.html
Copyright © 2011-2022 走看看