gpt4 book ai didi

css - 图像未加载 CSS

转载 作者:太空宇宙 更新时间:2023-11-04 00:39:05 25 4
gpt4 key购买 nike

我引用了几个不同的堆栈溢出问题,并尝试了看起来与我相似的解决方案,但我似乎找不到答案。为什么图片加载不出来?

我试过在 class 标签和 body 标签中使用它们。我试过前后斜杠。我试过清除我的缓存。我尝试为高度宽度和包含添加额外的规则。都无济于事。我也尝试过本地和 pixabay 网址。背景图像:图像('../img/eye.jpg');背景图片: url("img/eye.jpg");

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="styles\styles.css">
</head>
<body>
<div class="wrapper">
<h1>Front Page</h1>
</div>
</body>
</html>

* {
margin: 0;
padding: 0;
}

.wrapper {
margin: 0 auto;
width: 1000px;
}

.img-eye {
background-image: url("https://pixabay.com/photos/dog-bathing-sea-waves-portrait-4565646/");
background-size: 100%;
height: 200px;
width: 300px;
}

body {
background-image: image('../img/eye.jpg');
background-color: #000;
}

没有任何错误信息。该死的东西是死锅。代码也在 js fiddle 上。 https://jsfiddle.net/greenthingsjump/htq4os9c/1/

最佳答案

您需要引用带有图片扩展名(jpg、png、svg)的图片 url。您正在引用带有嵌入图像的页面。尝试更改正文样式以包含此 url:

https://cdn.pixabay.com/photo/2019/10/21/10/04/dog-4565646_1280.jpg

你也没有使用你的 img-eye 类,以防你没有意识到。

关于css - 图像未加载 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58682106/

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