我无法将图像添加到div中。我将文件和图像放在同一个文件夹中,图像是jpg。我也试过将在线图片链接(http://www.aussieinfrance.com/wp-content/uploads/stockholm-4.jpg)放入,但没有成功。这是我的html文件:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="topnav" id="myTopnav">
<a class="active" href=“#home”>Sweden</a>
<a href=“government.html”>Government</a>
<a href=“borders.html”>Borders</a>
<a href="#about">Iconography</a>
</div>
<div class="overview" id="overview">
<p>Sweden is a northern country that specializes in trading machinery, paper products, and iron and steel products</p>
</div>
</body>
</html
这是我的css文件:
/* Add a black background color to the top navigation */
.topnav {
background-color: #262228;
overflow: hidden;
margin: 0;
padding: 0;
}
/* Style the links inside the navigation bar */
.topnav a {
font-family: verdana;
float: left;
color: #f2f2f2;
text-align: center;
padding: 25px 27px;
text-decoration: none;
font-size: 19px;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: #ddd;
color: black;
}
/* Add a color to the active/current link */
.topnav a.active {
background-color: #FFCE00;
color: white;
}
body {
margin: 0;
padding: 0;
font-family: verdana;
}
.overview p {
font-size: 20px;
padding-top: 30px;
padding-right: 50px;
padding-left: 550px;
color: #262228;
text-align: right;
}
.overview {
background-image: url(“stockholm.jpg”);
}
答案 0 :(得分:0)
您引用的图像是否在同一目录中,style.css文件位于何处。如果没有,则指定图像的路径相对路径,如background-image: url('./img/stockholm.jpg');
(如果文件位于img文件夹中)。请参阅要了解的相对和绝对文件路径声明。希望能帮助到你。谢谢。
答案 1 :(得分:0)
"
指令中使用简单引号“”
代替印刷引号url
。./stockholm.jpg
代替stockholm.jpg
。