我想创建一个具有固定背景的网站(我已经知道了),并且在中间的背景前面是我的东西,比如这个网站:http://www.nexusmods.com/skyrim/?我搜索了整个互联网但我找不到任何东西。我已经在源头搜索过了。有人能帮我吗?因为我的英语不好,我很瑞士。请尽快纠正我。
答案 0 :(得分:1)
您正在寻找的是设置主要内容的固定宽度,然后设置左右自动边距,使其居中。
.content {
width:600px; //set your desire width here
background-color:#ffffaa; // color is just there to visualize
margin-left:auto;
margin-right:auto;
}
HTML中的:
<body>
<!-- header -->
<!-- main content -->
<div class="content">
This is the main content box
</div>
<!-- footer -->
</body>
希望这会有所帮助。
暂存器,
晏