我正在尝试将图像拉伸到 IE8 中浏览器的边界。它正在工作,除了右边、左边、顶部和底部有大约 5px 大小的空白。我希望图像完全延伸到各个方面。我的雇主暗示,如果我无法正确获取此页面,这是最后一根稻草:(如果可以,请提供帮助..
HTML:
</head>
<body class="fullbackground">
<!--THIS IS THE BACKGROUND IMAGE--><img class="fullbackground" src="c:\documents and settings\zx08067\Desktop\Outage_Page\background.png">
<div class="top">
...
...
CSS:
body {
position:relative;
}
img.fullbackground {
position:absolute;
z-index:-1;
top:0;
left:0;
width:100%; /* alternative: right:0; */
height:100%; /* alternative: bottom:0; */
padding-left:0px;
padding-right:0px;
margin-left:0px;
margin-right:0px;
}