设置背景图片时,background-size:cover是经常用到的铺满全屏的代码。但是这句一定要放在background之后,否则可能不起作用。
.my_jumbotron{
background: lightslategrey url(../static/pics/bgimg17.jpg) no-repeat center center;
background-size:cover;
text-align: center;
height: 500px;
}