我试图弄清楚如何为此网站添加背景颜色:
我希望颜色在身体表的蓝色边框之外。是否有一种简单的方法可以将背景添加到主站点,因此唯一的白色背景是正文?
答案 0 :(得分:1)
以下是代码,它修复了您网站中几乎所有主要的布局问题 -
body{
background:green;//color you want to define outside border
}
#wrapper {
background: none repeat scroll 0 0 #FFFFFF; //making background white inside box
margin: 0 auto;
overflow: hidden; //This will hide the content going out of your box
width: 950px;// I see your table width as 950, so changed this to 950
}
答案 1 :(得分:0)
在样式表中,使用
body
{
background-color : red; //suppose red
}
现在使用< DIV>放置所有其他信息或蓝色边框
答案 2 :(得分:0)
在 stylesheet.css ...
中body {
background-color: black;
/* OR */
background-color: #ffffff; /*Hex Value*/
/* OR */
background-color: rgb(0,0,0); /*RGB Value*/
/* OR */
background: url(http://tinyurl.com/oaq99oc) #fff no-repeat;
/* OR */
background-image: url(http://tinyurl.com/oaq99oc);
}
答案 3 :(得分:0)
使用当前的方式设置HTML,没有简单的方法。尝试将您拥有的所有物品放在某种居中的div中。我尝试修改包装器div,body和html的颜色,并且由于没有包含div的页面内容,因此无论您选择哪种颜色,它都会为表格中的所有内容着色。一旦你想要用背景颜色包围你想要的内容,你就会做某种
#page-container { background:red; }
或
body { background:red; }
取决于您想要的具体内容,并严格将着色放在主页信息之外。
答案 4 :(得分:0)
如果您想设置拉伸背景图片,或者您可以使用此插件:Backstretch plugin
或者你可以在Html元素上设置背景颜色。