我正在使用此代码将固定宽度的图像居中/定位为我的背景。我需要在填充浏览器窗口边缘的图像周围添加颜色。我试过背景颜色,边框颜色......
因此,图像的宽度为 1050px。如果浏览器窗口是 1500 像素,我想让剩余的区域变黑(例如)。我怎样才能做到这一点?
#content {
text-align: left;
width: 1050px;
height: 825px;
margin: 0 auto;
padding: 0px;
background-image: url(file:///X|/CarFingers/tabback1_hor.png);
background-repeat: no-repeat;
}
body {
font-family: Helvetica, Arial, sans-serif;
font-size: 14px;
color: #333333;
text-align: center;
}
<div id="content">
<body>
</body>
</div>