我已經在角視圖下的div,這是所有在視圖中截至目前Div的高度由文字高度內確定,我不想要這個
<div class="home-container" ng-controller="ctrlHome" >
HELLO
</div>
我想設置它的背景圖像佔用頁面的其餘部分或相同數量的身體
這裏是CSS
html {
height: 100%;
}
body {
font-family: "Hero", Times, serif !important;
min-height: 100%;
}
.home-container {
background: url('../images/94H.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
min-height: 100%;
clear:both;
}
所有我得到它的圖像文本HELLO這是20像素的高度這可能是東西容易,我搞砸了,但是這是令人沮喪的非少 在此先感謝
嘗試加入'html'身體規則...'HTML,身體{...' – charlietfl