html dom在整个页面上制作背景

时间:2014-05-09 05:33:05

标签: html css dom background

我看到了代码:enter link description here

我希望背景能够全部隐藏 - 整个页面。 它将在文本上(覆盖它)。 这可能吗?

2 个答案:

答案 0 :(得分:1)

你有没有试过这样的东西......

#background{
z-index:999;
background-image:url(...);
width:100%;
height:100%;
}

我推荐你这个方法, 但你也可以这样做:

#content{
/*i mean de content wich you want to hide with the background*/
display:hidden;
}

答案 1 :(得分:0)

您可以设置一个fixed positioned div,widthheight 100%0px位于topleft <div id="background"></div> 。现在你必须设置一个背景,使用标准的css值:repeat。使用图案图像,您将获得最佳效果。

<强> HTML

#background {
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background-image:url("image-path/image-name.jpg");
}

<强> CSS

{{1}}

JSFiddle Demo