文本在div中水平垂直居中

****让文字在div中水平居中****

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Center</title>
    <style type="text/css">
        .content{
            display: table-cell;
            vertical-align: middle;
            width: 200px;height: 200px;
            border: 1px solid red;
            text-align: center;
        }
    </style>
</head>
<body>
    <div class="content">
        <div>文本1</div>//换成p标签也可以
        <div>文本2</div>//换成p标签也可以
    </div>
</body>
</html>

css样式代码.content可以让content中内容水平垂直居中

    原文作者:BrianAguilar
    原文地址: https://www.jianshu.com/p/395b9fc91f26
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞