所以我有两个css。
- 样式.css
- 注册.css
我创建了一个名为 css 的文件夹并将 signup.css 放在 css 文件夹中。
signup.css 是 style.css 的副本,只是放在 CSS 文件夹中。
这是包含图像的css代码:
#body{
width:683px; margin:0 auto; padding:0 0 60px 0;
background:url(images/header_bg.gif) no-repeat right top #F7F7F7; color:#171717;}
当我重新加载网页时,图像坏了,所以我将代码更改为:
#body{
width:683px; margin:0 auto; padding:0 0 60px 0;
background:url(../images/header_bg.gif) no-repeat right top #F7F7F7; color:#171717;}
但是图像仍然无法加载。如何调整 css 以使图像加载与放置在 css 文件夹下的 style.css 一起?
回答一个问题:
头 meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 标题> 链接 href="css/signup.css" rel="stylesheet" type="text/css" /> /头>