0

编辑:我所做的与我在下面写的没有什么不同,但它现在有效。不知道为什么:-/谢谢你们的帮助:)

我正在尝试将我的文档链接到一个 css 文件。问题是这样的。

这有效:

<link rel="stylesheet" type="text/css" href="style.css">

此剂量:

<link rel="stylesheet" type="text/css" href="css/style.css">

当然,当我尝试链接到该文件时,该文件存在于子文件夹中。

:)

编辑:

HTML 文件

<link rel="stylesheet" type="text/css" href="/css/style.css">
</head>
<body>
<table id="menu">
<tr>
<td><a id="button">Home</a></td>
<td><a id="button">Education</a></td>
<td><a id="button">Experience</a></td>
<td><a id="button">Gallery</a></td>
<td><a id="button">Cantact Me</a></td></tr>

</table>

它似乎只在我的 html 编辑器(Expression Web)中有效,但是当我在浏览器(chrome/firefox/ie)中打开它时它不起作用。

样式文件:

 body{ background-color: white;} 

 #menu { width:100%; background-image:url('BarBG.png'); border:0px;  }
 #button 
 { 
 color:white; 
 font-size:large; 
 line-height:45px; 
 vertical-align:middle; 
 text-align:center;
 display: block; 
 width: 100px; 
 height: 45px;
 margin-right:auto; 
 margin-left:auto;
   }
   #button:hover{


color:black; 
font-size:large; 
line-height:45px; 
vertical-align:middle; 
text-align:center;
display: block; 
width: 100px; 
height: 45px;
margin-right:auto; 
margin-left:auto;
background-image:url('BarBGHover2.png');
cursor:pointer;  
}
4

2 回答 2

1

Trey 建立相对于根的链接

<link rel="stylesheet" type="text/css" href="/css/style.css">
于 2012-07-30T20:04:03.783 回答
0

或者试试这个:

<link rel="stylesheet" type="text/css" href="./css/style.css">

./意味着从哪里调用它的相对位置。并不总是需要,但有时可以提供帮助。:)

于 2012-07-30T20:10:20.690 回答