我正在尝试在我的一个项目上应用全屏背景图像。它在 IE9 和 Firefox 中运行良好,但我一直在努力解决 Chrome 上的一个问题,因为它在顶部和左侧添加了一些 1px 边框。
截图:这里
我试图应用边框:0;但仍然没有。
<img src="./images/highway.jpg" class="background-image" alt="background-image" />
img.background-image {
/* Set rules to fill background */
min-height: 100%;
min-width: 960px;
/* Set up proportionate scaling */
width: 100%;
height: auto;
/* Set up positioning */
position: fixed;
top: 0;
left: 0;
}
@media screen and (max-width: 1024px) { /* Specific to this particular image */
img.background-image {
left: 50%;
margin-left: -512px; /* 50% */
}
}
任何人都知道可能导致这种情况的原因是什么?将不胜感激:)