<!-- 节点 -->
<div></div>
<!-- 样式 -->
<style>
div
{
/*把边框和内容计算入width内*/
box-sizing:border-box;
/*只把内容计算入width内*/
box-sizing:content-box;
width: 200px;
height: 200px;
background-color: #999;
border: 20px solid #0F9E60;
}
</style>
网友评论