文本在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中内容水平垂直居中

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容