无法更改 bootstrap 背景图片

Cant change bootstrap background image

我在更改 bootstrap 3 背景图像时遇到问题,我使用图像作为 .container 的背景,我想将其他图像设置为背景图像,这样它就会填空 space'侧面。

我可以请求一些帮助吗?

Link to site

使用 css.

将图像附加到正文元素而不是具有 class 容器的元素
body {
    background: url('x');
}

x 可以等于绝对图像路径或相对路径。

这也可以直接在 html

中的 body 元素上使用内联样式来实现
 <body style="background:url('x')">