我的背景图片大小为 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;
只是因为它不覆盖屏幕而存在。
有任何想法吗?谢谢!