我是 Web 开发的新手,但我几天来一直在寻找解决这个问题的方法,所以我决定最后问你。
我有一个空页面,其背景在外部样式表中定义。
除此之外,我在正文中包含了一个 div,我将使用它通过外部样式表定位图像,而不仅仅是在 html 文件中插入一个标签。
这是我的html文件:
<! DOCTYPE html public "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<title>Azin Productions</title>
<link rel="stylesheet" type="text/css" href="style/style_2.css">
<link rel="stylesheet" type="text/css" href="style/MyFontsWebfontsOrderM3219563.css">
</head>
<body>
<p>Hello World</p>
<div class="bit_1"></div>
</body>
这是我的样式表:
body {
background: url(images/NYCNEW.jpg);
background-size:100% 130%;
background-repeat:no-repeat;
z-index: -100;
font-family: Museo-500; calibri;
}
p {
color:orange;
}
.bit_1 {
color:blue;
background-image: url(images/bits/bit_1.png)
z-index: 500
}
-是的,我绝对确定链接是正确的:)
在此先感谢,马格努斯