css实现垂直居中

来源:互联网 发布:mac怎么输入货币符号 编辑:程序博客网 时间:2024/05/18 21:44

这个方法把一些 div 的显示方式设置为表格,因此我们可以使用表格的 vertical-align property 属性。

display:table-cell;vertical-align:middle;

这个方法使用绝对定位的 div,把它的 top 设置为 50%,top margin 设置为负的 content 高度。这意味着对象必须在 CSS 中指定固定的高度。

#content {    position:absolute;    top:50%;    height:240px;    margin-top:-120px; /* negative half of the height */}

这种方法,在 content 元素外插入一个 div。设置此 div height:50%; margin-bottom:-contentheight;。content 清除浮动,并显示在中间。

#floater    {float:left; height:50%; margin-bottom:-120px;}#content    {clear:both; height:240px; position:relative;}

这个方法使用了一个 position:absolute,有固定宽度和高度的 div。这个 div 被设置为 top:0; bottom:0;。但是因为它有固定高度,其实并不能和上下都间距为 0,因此 margin:auto; 会使它居中。使用 margin:auto;使块级元素垂直居中是很简单的。

#content {    position:absolute;    top:0;    bottom:0;    left:0;    right:0;    margin:auto;    height:240px;    width:70%;}

友链:http://douglasheriot.com/tutorials/css_vertical_centre/demo4.html

0 0
原创粉丝点击