English 中文(简体)
CSS 主要委员会 身体不长于一页?
原标题:CSS Main Body does not stretch to page?

我对我的头部进行点击,试图说明我为某个地点撰写的法典为何没有很好地发挥作用。

我的网页(以下连接的白区)的主要体应从导航到脚步,但只在某些网页上。

脚).自动放在每一页底处,不论身高(即,在400px高页的下页)。

难道我可能只是缺少一些非常基本的东西吗?

我在以下网址上贴上了链接:

<www.contendertest.com

我遇到麻烦的是指数和入学链接。

最佳回答

这是因为,如果你有一大观察区,就没有足够的内容来填补这一空白。 如果你看看着一个较大的窗户,你就可以看到,这并非一帆风顺。

<>strong>EDIT: Add. Line patter-bottom:100px to # person Container and Tir-top:-100px to #footer and it will work.

问题回答

缩略语 div 附有<代码>的内容区宽度和颜色的背景图 重复-y。

<><>Edit>: 也是背景形象的中心。

引证。 当然,没有像我国安全局这样的线。

<html>
<head>
    <title>DIV Test</title>
    <style>
        body {
            margin: 0;
        }

        #container {
            height: 100%;
            width: 100%;
        }

        #header {
            background: #0000FF;
            position: absolute;
            top: 0;
            height: 100px;
            width: 100%;
        }

        #content {
            background: #FF0000;
            height: auto;
            width: 100%;
        }

        #footer {
            background: #00FF00;
            position: absolute;
            bottom: 0;
            height: 100px;
            width: 100%;
        }
    </style>
</head>
<body>
    <div id="container">
        <div id="header"><!-- header content here --></div>
        <div id="content"><!-- main content here --></div>
        <div id="footer"><!-- footer content here --></div>
    </div>
</body>

希望能帮助你们。

EDIT:指出解决办法是什么。 看看CSS的头部和脚步属。 这应当解决。

页: 1

现在

html, body {
  background-color:#EDEDE1;
  color:#666666;
  font:12px Helvetica,Arial,sans-serif;
  height:100%;
  margin:0;
  padding:0;
  text-align:justify;
}

之后

html, body {
  background-color:#EDEDE1;
  color:#666666;
  font:12px Helvetica,Arial,sans-serif;
  margin:0;
  padding:0;
  text-align:justify;
}




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签