【发布时间】:2018-03-25 02:31:28
【问题描述】:
我有一个 html 文件,我将背景 url 设置为图片,但图片没有填满浏览器的宽度:
我也尝试设置width属性使其更宽,但似乎没有效果。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
#bg {
height:1500px;
background: url("img/timg7.jpg") center top no-repeat;
width:1800px;
}
</style>
</head>
<body id="bg">
<div style="width:400px; height: 200px; background-color: antiquewhite">
BLOCK
</div>
</body>
</html>
【问题讨论】:
-
你给了你的身体一个宽度?那是怎么回事?