幅x高さが1024px x 768pxの背景画像でDivを作成しようとしています。そしてそれはブラウザウィンドウ全体に適合しなければならない。私のDivを1024 x 768 pxに設定
私はフルスクリーンを占有画像を実現でき、以下のCSSを使用しますが、画像は、私は、CSSの下に使用して幅と高さを設定するための@mediaオプションを試してみました
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
#wrapper {
background-image : url(home.jpg);
background-position: top center !important;
background-repeat: no-repeat !important;
background-size: cover;
background-position: center;
min-height: 100%;
width : 100%;
height : 100%;
}
#container {
height: 100%;
}
をトリミングしますが、今、私は、スクロールとの完全な画像を取得します白いスペースはイメージがフルスクリーンを占めていないことを意味します。
html, body {
height: 768px;
width: 1024px;
margin: 0;
padding: 0;
}
#wrapper {
background-image : url(home.jpg);
background-position: top center !important;
background-repeat: no-repeat !important;
background-size: cover;
background-position: center;
height: 768px;
width: 1024px;
}
#container {
height: 100%;
}
@media (min-width:769px) and (max-width:1024px){
// your code
}
誰かが私はそれを達成し、それはすべてのブラウザで動作するように持っていることができる方法:(