Home >Web Front-end >HTML Tutorial >介绍一种css水平垂直居中的方法(非常好用!)_html/css_WEB-ITnose

介绍一种css水平垂直居中的方法(非常好用!)_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:33:161443browse

 

    这次介绍一下一个水平垂直居中的css方法,这个方法可以说是百试百灵,废话不多说,直接附上代码:

    html,body{

      width:100%;

      height:100%;

    }

    你需要居中的元素{

      position: fixed;(absolute)
      left:50%;
      top:50%;
      -webkit-transform: translate(-50%,-50%);

    }

    他的父元素{

      position: relative;

      width:100%;

      height:100%;

    }

    当然,你的父元素是需要一个高度的,不管是根据html和body的height:100%;还是具体的高度,这样子,你的元素不管怎么样都可以居中。根本不用去考虑margin或者padding或者float之类的属性,是不是很神奇!

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn