我有一個半透明的導航欄和背景圖像,並且兩者應該是瀏覽器窗口的高度。填充頂部和全部高度的顯示窗口與boostrap
我有一個body padding-top,不必一直定義一個容器。 問題是,navbar + background-image現在比瀏覽器窗口大,我有一個滾動條。
我怎麼能擺脫掉滾動條即。 navbar + background-image =瀏覽器窗口高度,不包含導航欄後面的背景圖像的一部分。
這裏是一個小提琴:https://jsfiddle.net/bb61c412/225/
而且相應的代碼:
.navbar {
background-color: #FF0000;
opacity:0.7;
border: 0 !important;
box-shadow: none !important;
-webkit-box-shadow: none !important;
}
body {
margin: 0;
padding-top: 50px;
}
#picture{
height: 100vh;
background-image: url("http://cdn.arstechnica.net/wp-content/uploads/2012/10/06_Place_20773_1_Mis.jpg");
background-repeat: no-repeat;
background-size:cover;
background-position: bottom center;
}
<link rel="stylesheet" type="text/css" href="https://bootswatch.com/bower_components/bootstrap/dist/css/bootstrap.min.css" />
<div class="navbar navbar-default navbar-fixed-top ">
<div class="container">
<div class="navbar-header">
</div>
</div>
</div>
<div class="col-sm-8" id="picture">
</div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
身體{「overflow:hidden;」 } helpfull? – Shashikala
@Webbie,是的,我沒有想過這個,但它看起來是最簡單和有效的解決方案。也許你應該編輯它作爲答案。 – michltm