码迷,mamicode.com
首页 > 其他好文 > 详细

块级元素内容和自身水平居中

时间:2018-05-21 16:19:05      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:ext   title   char   tle   idt   水平   margin   lan   nbsp   

css中,text-align属性可以让文字、图片等在块级元素中居中,如果要让块级元素本身居中(水平居中)可以用margin属性的auto值 <html lang="en">


<head>
    <meta charset="UTF-8" />
    <title>abc</title>
    <style type="text/css">
    div {
        width: 100px;//规定宽度,块级元素居中才有意义
        margin: auto;
    }


    </style>
</head>


<body>
    
    <div class="margin">这个段落</div>
    
</body>


</html>

如果不规定宽度,默认宽度为父级元素宽度,默认文字左对齐,看到的效果还是文字在左侧

 

块级元素内容和自身水平居中

标签:ext   title   char   tle   idt   水平   margin   lan   nbsp   

原文地址:https://www.cnblogs.com/cowboybusy/p/9067058.html

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