我试图在div的背景中设置图像但却消失了!我希望背景图片涵盖所有页面,谢谢。
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
div {
width:100%;
height: 100%;
background-image: url('https://static.vecteezy.com/system/resources/previews/000/094/491/original/polygonal-texture-background-vector.jpg');
}
</style>
</head>
<body>
<div></div>
</body>
</html>
答案 0 :(得分:0)
.img{
width:100px;
height:100px;
}
<div>
<img src="img1.jpg"/>
</div>
答案 1 :(得分:0)
直接将它贴在身上:
body {
background-image: url("img_link");
}
希望这有帮助。
答案 2 :(得分:-1)
为此让父母100%:
.input-label {
display: inline-block;
}