css垂直居中:5种方法

<!DOCTYPE html>
  <html>
  <head>
    <meta charset="utf-8" />
    <title></title>
  </head>

  <style>
    /*方法四*/

    /* This parent can be any width and height */
    .block {
      height: 300px;
      text-align: center;
      background: #FFE1CC;
      border: 2px solid #91C001;
    }

    /* The ghost, nudged to maintain perfect centering */
    .block:before {
      height: 100%;
      content: ‘‘;
      display: inline-block;
      vertical-align: middle;
      margin-right: -0.25em; /* Adjusts for spacing */
    }

    /* The element to be centered, can also be of any width and height */
    .centered {
      width: 50%;
      display: inline-block;
      vertical-align: middle;
      background: #A3E6F1;
    }

  </style>

  <body>

    <!--
      垂直居中:方法一
      使用:display:table;vertical-align:middle;
    -->
    <div style="width: 100%; height: 50px; display: table;border: 1px solid #333; background: #E0EAF4;">
      <div style="text-align: left; line-height: 50px;">项目质监机构</div>
      <div style="display: table-cell; vertical-align: middle;">
        <a style="border: 1px solid #333; height:2px; width:10px;"></a>
      </div>
    </div>

    <!--
      垂直居中:方法二
      使用:position:absolute;写法一
    -->
    <div style="position: relative; height: 150px; background-color: #C5C5FD;">
      <div style="position:absolute; background:#6F66FB; width: 100px; height: 100px; margin: auto; top: 0; bottom: 0; left: 0; right: 0;"></div>
    </div>

    <!--
      垂直居中:方法二
      使用:position:absolute;写法二
    -->
    <div style="position: relative; height:140px; background: #333; border: 5px dashed #658945;">
      <div style="position: absolute; height: 50px; width: 50px; top: 50%; margin-top: -25px; background: #84F754; left: 50%; margin-left: -25px;"></div>
    </div>

    <!--
      垂直居中:方法三
      使用:display:flex;
           justify-content: center;水平居中
         align-items: center; 垂直居中

      IE9,IE8下不支持;
    -->
    <div style="display: flex; display: -webkit-flex; height: 200px; background: #FFFFCC; border: 3px solid #C0014E; align-items: center; justify-content: center;">
      <div style="height:70px; width:70px; background: #29F9F9;"></div>
    </div>

    <!--
      垂直居中:方法四
      使用:display:inline-block;
    -->
    <div class="block">
      <div class="centered">
        <h1>haorooms案例题目</h1>
        <p>haorooms案例内容,haorooms案例内容haorooms案例内容haorooms案例内容haorooms案例内容haorooms案例内容haorooms案例内容haorooms案例内容haorooms案例内容</p>
      </div>
    </div>

  </body>
</html>

时间: 2024-09-29 16:08:05

css垂直居中:5种方法的相关文章

CSS垂直居中6种方法

转自http://blog.csdn.net/wolinxuebin/article/details/7615098 利用CSS进行元素的水平居中,比较简单,行级元素设置其父元素的text-align center,块级元素设置其本身的left 和 right margins为auto即可.本文收集了六种利用css进行元素的垂直居中的方法,每一种适用于不同的情况,在实际的使用过程中选择某一种方法即可. Line-Height Method 试用:单行文本垂直居中,demo 代码: html 1

CSS 垂直居中5种方法

利用 CSS 来实现对象的垂直居中有许多不同的方法,比较难的是选择那个正确的方法.我下面说明一下我看到的好的方法和怎么来创建一个好的居中网站. 使用 CSS 实现垂直居中并不容易.有些方法在一些浏览器中无效.下面我们看一下使对象垂直集中的5种不同方法,以及它们各自的优缺点.(可以看看测试页面,有简短解释.) 方法一 这个方法把一些 div 的显示方式设置为表格,因此我们可以使用表格的 vertical-align property 属性. Content goes here #wrapper {

css垂直居中几种方法(二)

方法1:table-cell .box1{ display: table-cell; vertical-align: middle; text-align: center; } <div class="box box1"> <span>垂直居中</span> </div> 方法2:display:flex .box2{     display: flex;     justify-content:center; //横     align

HTML引入CSS样式三种方法及优先级 CSS样式的写法

HTML引入CSS样式三种方法及优先级: 方法 css的样式引用由3种方式.分别为行内样式.内部样式(嵌入式)和外部样式: 行内样式:                  在对象的标记内使用对象的style属性定义适用的样式表属性,格式定义为 :<div style="内容"><div>: 内部样式(嵌入式):是由<style></style>标记对放在<head></head>中: 外部样式 :          

WordPress引入css/js两种方法

WordPress引入css/js 是我们制作主题时首先面对的一个难点,任何一款主题都要加载自己的css,js,甚至很有可能还需要加载Jquery文件,网上方法特多,说法不一,我们今天借鉴wordpress官方最新的twentysixteen主题来学习总结一下WordPress引入css/js各种常用方法,以及最优化的加载方法. 其实网上的N种方法总结起来就两种:一.模板文件header.php中直接引入文件二.在主题的functions.php中通过WP自带的函数wp_enqueue_scri

css中元素水平垂直居中4种方法介绍

table-cell轻松设置文本图片水平垂直居中 让一个元素垂直居中的思路:把这个元素的容器设置为table-cell,也就是具有表格单元格的特性,再使用vertical-align(这个属性对block元素不起作用,但对table-cell元素是有效的)设置元素垂直居中,即可达到我们想要的效果. IE7及以下版本不支持此方法,IE8及以上版本及大部分的主流浏览器都很好的支持. HTML代码  代码如下   <div class="img">    <img src=

实现垂直居中 5 种方法

利用 CSS 来实现对象的垂直居中有许多不同的方法,比较难的是选择那个正确的方法.我下面说明一下我看到的好的方法和怎么来创建一个好的居中网站. 使用 CSS 实现垂直居中并不容易.有些方法在一些浏览器中无效.下面我们看一下使对象垂直集中的5种不同方法,以及它们各自的优缺点.(可以看看测试页面,有简短解释.) 方法一 这个方法把一些 div 的显示方式设置为表格,因此我们可以使用表格的 vertical-align property 属性. <div id="wrapper">

css 垂直居中的一些方法

总结: 方法一: #main { margin: 0 auto; width: 100px; height: 100px; background-color: #000; } /*利用margin的水平方向上auto属性设置为自动使#main居中显示,#main需为块级元素而且必须指定宽度,背景是为了展示居中效果*/ 方法二: 为#main添加一个父元素div Html: <div id=”#main-parent”> <div id=”#main”></div> &l

未知宽高div水平垂直居中3种方法

<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> </head> <body> <!--方法1:一个未知宽高的弹出框,水平垂直居中--> <div style="position:relative;width:100%;height:600px;border:1px solid #888">方法1 <div

屏幕居中(DIV/CSS) 的几种方法(转)

1.利用table特性,在width and height all set 100%的时候,可以把容器嵌套在td内形成绝对居中,此时的被嵌套容器可为绝对或者相对大小.(非标准)注意不能加声明! 如是在标准模式下要加样式body,html{height:100%;padding:0;margin:0;}<table width="100%" height="100%" border="0"align="center" ce