我需要幫助調整我的div大小。如何根據背景圖像大小自動調整div的大小?
我需要的是簡單的:我有一個圖像具有1920x1080px,我把這個圖像作爲背景圖像在我的div。
我的代碼:
HTML:
<!DOCTYPE html>
<html>
<meta charset="UTF-8"/>
<link rel="stylesheet" href="_css/Estilo.css"/>
<head>
<title>ooOOOoos</title>
</head>
<body>
<div id=imgHeader>
<p>Hey!!</p>
</div>
</body>
</html>
CSS:
@charset "UTF-8";
*{
margin: 0;
padding: 0;
}
body{
background-color: #ffffff;
}
#imgHeader{
background: url(../_img/img1.jpg) no-repeat center center fixed;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-ms-background-size: cover;
-o-background-size: cover;
}
我需要的是這樣的: 但是...我得到這個: 任何想法關於如何幫助我?
作品,但與此代碼,頁面滾動不apear,我需要 –
所以,你希望你的頁面滾動滾動在它的頂部? – Guy
是的,當我滾動時,我的頁面應該變成灰色,這個div應該消失。示例:[here](http://mobile.thescore.com/about-us/) –