0

I am having trouble with setting a fixed width and height for my webpage. I would like it to work more like Facebook where the page does not change its content when the browser is minimized or scrolled in.

I am currently making an IR for class but am stuck on this issue. Here is my website link: 2011.ispace.ci.fsu.edu/~ajb09f/ir

I have tried setting the width of the body to 945 and tried setting the position to absolute but it is still scaling. I know this is simple and would really appreciate anyone's help!

4

3 回答 3

0

看起来在某些情况下您的利润会导致问题。如果你想为块元素设置明确的宽度,你必须确保它们加起来不超过容器的宽度,否则它们会溢出。尝试使用百分比而不是像素来设置宽度。

你的花车看起来也可能会造成麻烦。确保根据需要清除浮动。

于 2013-07-19T19:48:19.167 回答
0

你得到了宽度为 945px 的包装器。但它的内容更大。点赞1100+

为什么这样?

width:100%如果您希望它与父元素具有相同的宽度,请在子元素上使用。这是第一点。

二:从标题中删除文件css/bootstrap-responsive.css,因此该站点将不再响应。

于 2013-07-19T19:36:37.047 回答
0

在 css 中创建一个包装类:

.wrapper {
  width:945px; 
  margin:0 auto;

}

在您页面的 html 中,将所有内容放在一个<div class="wrapper"></div>

那应该让你开始。

于 2013-07-19T19:34:28.657 回答