サイズが 1620*1080 の背景画像があり、画面解像度は 1366*768 です。画面の約 15% (右側の部分) をカバーしていない可能性はありますか?
これが私のコードです:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
body {
min-height: 100%;
min-width: 100%;
background-image:url(background.png);
background-repeat: no-repeat;
}
div#container {
margin: 0 auto;
background-color: red;
}
</style>
</head>
<div id="container">
</div>
<body>
</body>
</html>
ご覧のとおり、追加しました
min-height: 100%;
min-width: 100%;
役立つかもしれないと思った。画面background-repeat: no-repeat;
を覆わないからこそ存在するのです。
何か案は?ありがとう!