让整个首页左右两边都要有一块空白
1 回答

ibeautiful
TA贡献1993条经验 获得超5个赞
不建议给html或者body直接加这些样式。
你用个div设置下,margin:0 auto;
吧!
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
*{
margin:0;
padding:0;
}
.div1{
margin:0 auto;
width:300px;
}
</style>
</head>
<body>
<div class="div1">
<p>一个没有指定边距大小的段落。</p>
<p class="ex1">一个指定边距大小的段落。</p>
<p>一个没有指定边距大小的段落。</p>
</div>
</body>
</html>
添加回答
举报
0/150
提交
取消