gpt4 book ai didi

javascript - 为什么这段代码不显示背景图片?

转载 作者:太空宇宙 更新时间:2023-11-04 09:23:22 24 4
gpt4 key购买 nike

我的 HTML 代码-

 <html> 
<head>
<style type="text/css">
{
/*for setting background image*/
background-image: url('C:/Users/SONY/Desktop/CSS/images.jpg');
background-attachment: fixed
}
</style>
</head>
</html>

此代码用于设置背景图像。但它没有显示结果。我没有创建两个文件。就像一个用于 CSS 和另一个 HTML 文件。我已将这两个文件编译成一个文件。

为什么我看不到背景图片?尽管给了URL 的正确路径。

最佳答案

您需要指定要为其提供特定 CSS 属性的元素,例如 htmlbody.class#编号

body {
/*for setting background image*/
background-image: url('http://lorempixel.com/400/200/sports/1/');
background-attachment: fixed
}

这是工作的链接fiddle .

关于javascript - 为什么这段代码不显示背景图片?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41342356/

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