0
我正在爲我的網站創建一個簡單的標題部分與一個大圖像。圖像應該從我的導航欄下方的屏幕填充到瀏覽器窗口的底部。目前它不顯示,並給它一個0px的高度。我可以看到它正在拉正確的圖像,但不知道爲什麼它沒有給它一個高度。使背景圖像填充屏幕,當前高度0px
這是我的html和css我正在使用。
<!-- banner -->
<div class="banner">
<div class="welcome-message">
<div class="wrap-info">
<div class="information">
<h1 class="animated fadeInDown">Test Content</h1>
<p class="animated fadeInUp">This is a test</p>
</div>
</div>
</div>
</div>
<!-- banner-->
.banner {
background: url(../images/photos/banner.jpg) no-repeat bottom center scroll;
background-color: #000 !important;
-webkit-background-size: cover !important;
-moz-background-size: cover !important;
background-size: cover !important;
-o-background-size: cover !important;
width: 100%;
height: auto;
}
我們需要看到這個**不**工作診斷。你可以做一個演示或提供一個鏈接?而且,那些「重要」陳述可能是不必要的。 –
您可以提供一個問題的最小例子,例如在[JSFiddle]上(http://jsfiddle.net),所以人們更容易複製和分析它。 –
請參閱'height:auto'不會使其適應父級的'100%'高度。 – Jai