Home > Article > Web Front-end > Vertical centering--single-line text with a determined height of the parent element, multi-line text with a determined height of the parent element_html/css_WEB-ITnose
Statement: From http://www.imooc.com/learn/9 Learn
Yes This is achieved by setting the height and line-height of the parent element to be consistent.
.container{ height:100px; line-height:100px; background:#999;}
<body><table><tbody><tr><td class="wrap"><div> <p>看我是否可以居中。</p> <p>看我是否可以居中。</p> <p>看我是否可以居中。</p> <p>看我是否可以居中。</p> <p>看我是否可以居中。</p></div></td></tr></tbody></table></body>
table td{height:500px;background:#ccc}
<div class="container"> <div> <p>看我是否可以居中。</p> <p>看我是否可以居中。</p> <p>看我是否可以居中。</p> <p>看我是否可以居中。</p> <p>看我是否可以居中。</p> </div></div><style>.container{ height:300px; background:#ccc; display:table-cell;/*IE8以上及Chrome、Firefox*/ vertical-align:middle;/*IE8以上及Chrome、Firefox*/}</style>