我目前正在設計一個使用Bootstrap的網站,並試圖在本網站上添加一個完整高度的背景封面圖片:http://lewisking.net/。Bootstrap全高背景封面圖片
這是我的代碼:
HTML
<header class="title">
<div class="cut">
<img src="" height="">
</div>
<h2>Vintage Boutique Based in New York</h2>
<nav>
<ul>
<li><a href="#portfolio">SHOP</a></li>
<li><a href="#about">ABOUT</a></li>
<li><a href="#contact">PRESS</a></li>
</ul>
</nav>
</header>
CSS
header {
background: url(../img/nycfull.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.cut img {
max-width: 100%;
height: auto;
max-height: 100%;
}
但是,我不能見得到的圖像覆蓋整個 「倍以上」 節。圖像的高度與標題中的文字一樣高。任何想法我做錯了什麼?
是,該演示也正是我的意思。謝謝! – Adda
@Adda:歡迎,並接受答案:) – Fox
您的示例圖片不再有效 –