bootstrap选项卡隐藏背景图像

时间:2017-01-17 18:48:16

标签: html twitter-bootstrap

我正在使用来自w3学校的引导标签/药片的网站(http://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_tabs&stacked=h) 我想显示整个网页的背景,但选项卡的内容始终隐藏背景图像。

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

1 个答案:

答案 0 :(得分:0)

使用正文代替html

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