gpt4 book ai didi

php - 使用括号时 CSS 背景图像 url 不起作用

转载 作者:行者123 更新时间:2023-11-27 23:40:58 26 4
gpt4 key购买 nike

使用方括号编辑器。这里

我试图通过从 index.html 链接 stylecss 将图像插入 class = portrait div,但它不会插入。

其他教程使用它。

但为什么它对我不起作用?

index.html

<html>
<head>
<title> My name's lEEGANG</title>
<meta name="viewport" content="width=device-width, user-scalable=no">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div clas="portrait"></div>
<div clas="profile">profile</div>
</body>
</html>

样式.css

body{
margin: 0;
}

body{
background-color: #111;
color: #999;

}
.portrait {
background-image: url(images/profile.png);
height: 200px;

}

最佳答案

请检查您的 HTML 代码中的 class 拼写

clas="portrait"--> 应该是double s "ss"

应该是:

<div class="portrait"> </div>

如果 div 为空,则在 css 中包含宽度

.portrait {
background-image: url(images/profile.png);
height: 200px;
width: 200px;
}

关于php - 使用括号时 CSS 背景图像 url 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57041247/

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