重新表述下,width和height定义的都是内容的宽和高,为什么左右边框会能适应内容和填充的宽度而变,上下边框是固定的文字会超出下边框,而且定义的下部填充似乎没有起到作用,感谢各位的解答
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>填充</title>
<style type="text/css">
#box1{padding:10px 100px 20px 10px;
width:100px;
height:100px;
border:10px solid red;
}
</style>
</head>
<body>
<div id="box1">盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1盒子1</div>
</body>
</html>