如何为页眉和页脚添加边距? [包括截图]

发布于 2024-10-02 02:54:34 字数 334 浏览 1 评论 0原文

如何使我的网站看起来更像下面显示的第二张图片? (请注意第二张图片中的左边距,而第一张图片中没有边距。)

http:// fotografcim-2.hosting.parking.ru/(这是一个演示网站。)

无边距: 之前

边距: 之后

How can I make my website look more like the second image presented below? (Notice the left margin in the second image, versus no margin in the first one.)

http://fotografcim-2.hosting.parking.ru/ (This is a demo site.)

No margin:
Before

Margin:
After

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

铃予 2024-10-09 02:54:34
div#outer {
background-color:#FFFFFF;
border:1px solid #D0D4C9;
margin:0 auto 5px;
padding:0;
width:80%;
}

上面的是你的风格

我删除了边距中的自动:

根据需要放置边距

margin:0 5px;

使用 FF Firebug 插件以更好地理解

请参阅这些

http://www.webreference.com/authoring/style/sheets/layout/advanced/

http://www.yourhtmlsource.com/examples/positioning2.html

div#outer {
background-color:#FFFFFF;
border:1px solid #D0D4C9;
margin:0 auto 5px;
padding:0;
width:80%;
}

The above one is your style

I remove the auto in the margin:

Put margin as you want

margin:0 5px;

Use FF Firebug addon for better understanding

Refer these

http://www.webreference.com/authoring/style/sheets/layout/advanced/

http://www.yourhtmlsource.com/examples/positioning2.html

雨夜星沙 2024-10-09 02:54:34

我会将其全部封装在一个包装器中,并将该包装器的宽度设置为内部 div 的当前宽度。

I would surround that all in a wrapper and set the width of that wrapper to the current width of the internal div.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文