我怎么能在全高度扩展背景图像? http://codepen.io/aalis/pen/egmmeW
.navbar-default { font-family: 'Montserrat', serif; background: #ccddff; border-bottom-color: #DFDFDF; height: 50px; margin-bottom: 0; }
.navbar-header .navbar-brand {
font-size: 36px; color: #b37700;
}
/*--HOME--*/
#home {
background: url('http://s17.postimg.org/m4bfqfgn3/fog_1005445_1920.jpg') no-repeat center center fixed;
}
答案 0 :(得分:1)
答案 1 :(得分:0)
如果您想要全高,可以在css中使用以下内容:
img { height:100% }
如果你想要全屏图像,你可以使用:
img { height:100%; width:auto; }
答案 2 :(得分:0)
使用此:
background: url("your image url") no-repeat center center fixed;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;