gpt4 book ai didi

html - 为什么我的背景图片根本不显示?

转载 作者:太空宇宙 更新时间:2023-11-03 19:56:14 26 4
gpt4 key购买 nike

我已经在每个与此问题类似的问题上寻找答案,但似乎没有任何效果。基本上我创建了一个测试文档来测试背景图像功能,因为它在我的主站点上不起作用。

HTML:

<!DOCTYPE html>
<html>
<head>
<link href="styles.css" text="type/css" rel="stylesheet">
<title>Test</title>
</head>
<body>
This is a test.
</body>
</html>

CSS:

body {
background-image: url(image.jpg) no-repeat;
}

除了“This is a test.”之外没有显示任何内容。我检查过图像是否与 styles.css 工作表位于同一位置,确实如此。谁能帮帮我?

最佳答案

您不能在背景图像中组合背景重复。

body {
background-image: url("image.jpg");
background-repeat: no-repeat;
}

关于html - 为什么我的背景图片根本不显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42146956/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com