Html 引导选项卡隐藏背景图像

Html 引导选项卡隐藏背景图像,html,twitter-bootstrap,Html,Twitter Bootstrap,我在一个网站上工作,该网站使用w3学校的引导标签/药丸() 我想显示整个网页的背景,但选项卡的内容总是隐藏背景图像 html { background: url("bground.jpg") no-repeat center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover;

我在一个网站上工作,该网站使用w3学校的引导标签/药丸() 我想显示整个网页的背景,但选项卡的内容总是隐藏背景图像

html { 
         background: url("bground.jpg") no-repeat center fixed; 
         -webkit-background-size: cover;
          -moz-background-size: cover;
         -o-background-size: cover;
         background-size: cover;
    }

使用正文而不是html

body{
    background: url("bground.jpg"); 
}

什么意思?请看这里:你能给我们看看你的html吗。此外,您的选项卡或选项卡内的内容是否有自定义样式?欢迎!请添加一个