码迷,mamicode.com
首页 > Web开发 > 详细

(前端)html与css css 13、多种居中方法

时间:2019-07-15 10:50:24      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:hide   mic   XML   style   空白   mamicode   eve   splay   lin   

一、文字居中

1、水平方向居中:

text-align: center;

2、垂直方向:

①:单行文本居中,行高等于盒子高↓

line-height: 200px;

完整代码、效果图 ↓

技术图片
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <title>Document</title>
    <style type="text/css">
        *{
            margin: 0;
            padding: 0;
        }
        .header{
            width: 200px;
            height: 200px;
            border: 1px solid #333;
            margin: 20px auto;
        }
        p{
            text-align: center;
            line-height: 200px;
            color: red;
        }
      
    </style>
</head>
<body>
    <div class="header">
        <p>哈哈哈哈哈哈哈</p>
    </div>
</body>
</html>
View Code

技术图片

②多行文本垂直居中:不设置盒子高度,用内容撑开高度,内边距上下相等,撑开空白区域。

width: 200px;
padding: 20px;

完整代码、效果图↓

技术图片
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <title>Document</title>
    <style type="text/css">
        *{
            margin: 0;
            padding: 0;
        }
        .header{
            width: 200px;
            padding: 20px;
            /*height: 200px;*/
            border: 1px solid #333;
            margin: 20px auto;
        }
        p{
            text-align: center;
            line-height: 20px;
            color: red;
        }
      
    </style>
</head>
<body>
    <div class="header">
        <p>哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈</p>
    </div>
</body>
</html>
View Code

技术图片

 

(前端)html与css css 13、多种居中方法

标签:hide   mic   XML   style   空白   mamicode   eve   splay   lin   

原文地址:https://www.cnblogs.com/StevenSunYiwen/p/11187398.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!