不用lineheight 让文字居中

如果有下列代码:

    <div class="wrapper">
        hello world
    </div>

想让hello world在wrapper类中垂直居中,可以为wrapper中添加如下CSS:

    .wrapper:after {
        display:inline-block;
        width:0;
        height:100%;
        vertical-align:middle;
        content:"";
    }

posted @ 2016-12-01 18:01  不正经的CodeMonkey  阅读(495)  评论(0编辑  收藏  举报