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

panding不会撑开盒子的情况

时间:2019-12-14 22:52:33      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:exp   html   document   width   高度   htm   meta   col   需要   

如果一个盒子没有给定宽度/高度,则padding 不会影响本盒子大小

下面代码son会向右移动20px但是son的宽度不变 如果想改变他的宽度需要给他加上一个宽度但是没必要

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        .father {
            width: 200px;
            height: 200px;
            background-color: red;
        }
        .son {
           padding-left:20px;
        }
    </style>
</head>
<body>
    <div class="father">
        <div class="son">123</div>
    </div>
  
</body>
</html>

panding不会撑开盒子的情况

标签:exp   html   document   width   高度   htm   meta   col   需要   

原文地址:https://www.cnblogs.com/f2ehe/p/12041044.html

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