如何在bootstrap中使用我们的背景? 我使用Bootsnip网站制作我的网站,但我必须使用白色背景制作我的网站;
我们可以在bootstrap中使用我们的背景吗? 谢谢你;
答案 0 :(得分:1)
您需要更改背景颜色' html body
的属性。您现在看到的颜色是在您下载的一个缩小的CSS文件中定义的。您可以覆盖该属性以将其设置为白色或您喜欢的颜色。更多信息:How to override the properties of a CSS class using another CSS class
答案 1 :(得分:0)
是的,您可以创建css规则并使用background-color:
,也可以使用background-image:
值得查看其中一些,因为它们将证明非常有用
答案 2 :(得分:0)
谢谢;
我使用css文件,但没有显示;
html file:
<div id="all">
...
</div>
css file:
#all
{
width:1400px;
height:2000px;
background:url(../images/backgr.png);
margin:0 auto;
}