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

CSS width:100%和width:auto的区别

时间:2015-06-22 17:53:20      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

width:100%和width:auto的区别

width:auto比较聪明,如果margin已经左右占去10px的空间,那么width给的值就是580px。

 

<style>
div{
width:600px;
overflow:auto;
background:#ccc;
}

p{
        width:auto;
        margin:10px;
        background:red;
}
</style>
</head>
<body>

<div>
    <p>123</p>
</div>

</body>
</html>

 

 

 

如果是width:100%,则说明p的width会得到600px就已经充满div区域,然后自己又有margin,所以会出现滚动条。

 

div{
width:600px;
overflow:auto;
background:#ccc;
}

p{
        width:100%;
        margin:10px;
        background:red;
}
</style>
</head>
<body>

<div>
    <p>123</p>
</div>

 

 

 

都是以父元素的宽度为参照。

CSS width:100%和width:auto的区别

标签:

原文地址:http://www.cnblogs.com/moyuling/p/4593546.html

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