如何在页面的右侧和左侧插入页边距?
我想插入这个边距,但我不知道为什么......我希望它像 Twitter 或 TwitPic
我的CSS:
body {
margin: 40px;
margin-bottom: 50px;
padding: 0;
background-color: #edece9;
font-family: "Lucida Grande", "Bitstream Vera Sans", "Verdana";
font-size: 13px;
color: #333;
}
I want to insert this margin, but I don't know why... I want it to be like Twitter or TwitPic
My CSS:
body {
margin: 40px;
margin-bottom: 50px;
padding: 0;
background-color: #edece9;
font-family: "Lucida Grande", "Bitstream Vera Sans", "Verdana";
font-size: 13px;
color: #333;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
假设页面结构如下:
那么 style.css 应该如下所示:
Assuming a page structure like so:
Then style.css should look like:
twitter 使用固定宽度的 div,该 div 使用
margin-left:auto;
和margin-right:auto
。这将使 div 水平居中twitter uses a fixed-width div which uses
margin-left:auto;
andmargin-right:auto
. this will center the div horizontally您需要放置一个固定的div(您想要的页面宽度并放置其
margin:0 auto
you need to put a div with a fixed with (your desired page width and put its
margin:0 auto