为什么设置上下左右padding都一样时候内容不居中???
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>填充</title>
<style type="text/css">
#box1{
padding:10px 10px;
border:1px solid red;
}
</style>
</head>
<body>
<div id="box1">盒子1def</div>
</body>
</html>