盒子中内容不随边距而改变位置
我把padding-bottom设置为0,这不是说盒子中的内容与边框底距离为0px吗,怎么内容还是在盒子的左上角?要是想设置盒子中内容位置要怎么做?
2016-10-16
在盒子里面加一个p标签,然后设置p标签的格式就可以实现了
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>填充</title>
<style type="text/css">
#box1{
width:100px;
height:100px;
padding:20px 30px 0px 20px;
border:1px solid red;
}
p{padding:20px 30px 0px 20px;}
</style>
</head>
<body>
<div id="box1"><p>盒子1</p></div>
</body>
</html>
设置之后的样子
举报