1
我使用下面的CSS我的網頁上一整頁的背景圖片:引導3全頁圖像背景
.full {
background: url(images/background.png') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
這是附着在HTML類:
<html class="full">
我現在想使用基本把內容放在上面的這個:
<div class="container">Text Here</div>
結果是導致容器推IM背景將年齡縮小並將內容放在上面。我怎樣才能讓這個內容浮在圖片的頂部?