美文网首页程序员
【HTML中垂直居中】【文本】一行文本垂直居中

【HTML中垂直居中】【文本】一行文本垂直居中

作者: fanlehai | 来源:发表于2018-11-02 13:59 被阅读1次

使用line-height属性,让文字的行高和容器的高度相同即可:

<html>

<head>
    <style type="text/css">
        #wrapper {
            height: 100px;
            background-color: rgb(87, 87, 92);
        }

        .content {
            line-height:100px;
        }
    </style>
</head>

<body>
    <div id="wrapper">
        <div id="cell">
            <p class="content">Content goes here</p>
        </div>
    </div>
</body>
</html>


参考链接:

相关文章

网友评论

    本文标题:【HTML中垂直居中】【文本】一行文本垂直居中

    本文链接:https://www.haomeiwen.com/subject/jwtcxqtx.html