当前位置:Gxlcms >
html代码 >
垂直居中--父元素高度确定的单行文本、父元素高度确定的多行文本_html/css_WEB-ITnose
垂直居中--父元素高度确定的单行文本、父元素高度确定的多行文本_html/css_WEB-ITnose
时间:2021-07-01 10:21:17
帮助过:26人阅读
声明:来自http://www.imooc.com/learn/9 学习
父元素高度确定的单行文本的竖直居中
是通过设置父元素的 height 和 line-height 高度一致来实现的。
.container{ height:100px; line-height:100px; background:#999;}
父元素高度确定的多行文本
使用插入 table (包括tbody、tr、td)标签,同时设置 vertical-align:middle。
看我是否可以居中。 看我是否可以居中。 看我是否可以居中。 看我是否可以居中。 看我是否可以居中。 |
table td{height:500px;background:#ccc}
在 chrome、firefox 及 IE8 以上的浏览器下可以设置块级元素的 display 为 table-cell,激活 vertical-align 属性,但注意 IE6、7 并不支持这个样式。
看我是否可以居中。
看我是否可以居中。
看我是否可以居中。
看我是否可以居中。
看我是否可以居中。