博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

css3 box-sizing详解。

Posted on 2017-01-21 16:30  程序员入门到放弃  阅读(111)  评论(0编辑  收藏  举报
<!DOCTYPE html>
<html>
<head>
<style> 
div.container
{
width:300px;
border:10px solid blue;
}
div.box
{
box-sizing:border-box;
-moz-box-sizing:border-box; /* Firefox */
-webkit-box-sizing:border-box; /* Safari */
width:50%;
height:80px;
padding:10px;
border:10px solid red;
float:left;
}
</style>
</head>
<body>

<div class="container">
<div class="box">这个 div 占据左半部分。</div>
<div class="box">这个 div 占据右半部分。</div>
<div style="clear:both;"></div>
</div>

</body>
</html>