明明设置的是上下左右10px的内边距,为什么距离不一样?
代码:
#box1{
width:100px;
height:100px;
padding:10px;
border:1px solid red;
}
正常“盒子1”不是应该在正中间,上下左右的距离相等吗?
代码:
#box1{
width:100px;
height:100px;
padding:10px;
border:1px solid red;
}
正常“盒子1”不是应该在正中间,上下左右的距离相等吗?
2019-08-29
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title>填充</title><style type="text/css">#box1{ width:100px; height: auto; /*垂直居中*/ padding:39px 0; /*水平剧中*/ text-align: center; border:1px solid red;}</style></head><body><div id="box1">盒子1</div></body></html>
举报