如何设置整个html页面的左右边距?给body加什么属性呢?

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

慕妹3146593
浏览 7362回答 1
1回答

ibeautiful

不建议给html或者body直接加这些样式。你用个div设置下,margin:0 auto;吧!<!DOCTYPE html><html><head><meta charset="utf-8">&nbsp;<title></title>&nbsp;<style>&nbsp; &nbsp; *{&nbsp; &nbsp; &nbsp; &nbsp; margin:0;&nbsp; &nbsp; &nbsp; &nbsp; padding:0;&nbsp; &nbsp; }&nbsp; &nbsp; .div1{&nbsp; &nbsp; &nbsp; &nbsp; margin:0 auto;&nbsp; &nbsp; &nbsp; &nbsp; width:300px;&nbsp; &nbsp; }</style></head><body>&nbsp; &nbsp; <div class="div1">&nbsp; &nbsp; &nbsp; &nbsp; <p>一个没有指定边距大小的段落。</p><p class="ex1">一个指定边距大小的段落。</p><p>一个没有指定边距大小的段落。</p>&nbsp; &nbsp; </div></body></html>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript