0

好的,我正在尝试制作一个隐藏的背景,但仍然不会显示在主要内容页面上,我想要主要内容本身的其他背景,但它只是不工作主要背景工作正常,只是内容不正常背景,谁能帮帮我?

body {
    margin: 0px auto 0px; 
    padding: 0px;
    overflow-x:hidden;
    background: #9fddf9 url(http://www.unwritten-quotes.com/images/bgfall.jpg) top center no-repeat fixed;
    width: 990px; 
    color: #000000; 
    font-size: 11px; 
    font-family:  Tahoma;
    letter-spacing:1px; 
    line-height:15px; 
}   

#shell {
    margin: 0px auto 0px; 
    padding: 0px;
    background: #91d8f4 url(http://unwritten-quotes.com/images/bg.gif) center repeat-y; 
    width: 990px;
}
4

2 回答 2

1

你需要给高度#shell {height:500px}

在这里你可以看到演示

http://jsfiddle.net/7jW8y/14/

于 2013-10-12T06:01:18.403 回答
1

你有添加任何内容#shell吗?如果您没有为您的 div 定义任何高度和/或它没有任何内容,那么它将不会显示..

<style>
body {margin: 0px auto 0px; padding: 0px;overflow-x:hidden;background: #9fddf9 url(http://www.unwritten-quotes.com/images/bgfall.jpg) top center no-repeat fixed;width: 990px; color: #000000; font-size: 11px; font-family:  Tahoma;letter-spacing:1px; line-height:15px; }    
#shell {margin: 0px auto 0px; padding: 0px;background: #91d8f4 url(http://unwritten-quotes.com/images/bg.gif) center repeat-y; width: 990px;}

</style>
<body>

<div id="shell">CONTENT</div>
</body>
</html>

或添加height:100px;/*or what ever hight you want*/到您的#shell

于 2013-10-12T06:02:20.327 回答