当前位置:Gxlcms > html代码 > 介绍一种css水平垂直居中的方法(非常好用!)_html/css_WEB-ITnose

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

时间:2021-07-01 10:21:17 帮助过:22人阅读

这次介绍一下一个水平垂直居中的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之类的属性,是不是很神奇!

人气教程排行