【发布时间】:2018-01-14 06:52:48
【问题描述】:
我目前正在尝试制作目标网页,但遇到了问题。 <img> 周围有一些白色条纹,它是looks like this。
我希望图片是全屏的,没有任何条纹等。
<!DOCTYPE HTML>
<head>
<title>Szafranowka - Apartments & Restaurant </title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<div id="container">
<div id="background">
<img src="background.jpg" id="background"> </img>
</div>
</div>
</body>
</html>
这里是 CSS:
#container
{
width: 100%;
height: 100%;
}
#background
{
width: 100%;
height: auto;
opacity: 0.6;
position: relative;
}
【问题讨论】: