CSS file IE firefox chrome



在我的CSS文件中,我有以下代码,并希望将其应用于我的表格

的标题
 caption 
 {
 color:green;
 font-style:bold;
 }

我的html文件

<html> <head>
<link href="mystyles.css" rel="stylesheet" type="text/css" />
<title>Home Page - My Schedule</title> </head> <body>
<center> <h2>write your name here...</h2> 
<a href="index.html">Home Page</a>  <a href="CV.html">My CV</a>  <a href="Schedule.html">My Schedule</a>  <a href="Icourses.html">My Courses</a>  <a href="Banner.html">Banner</a> <a href="Links.html">Links</a> <a href="Frames.html">Frames</a>
<br/> <table border="1" width="800" height="300" align="center"> <caption><h3>My Schedule</h3></caption>
<br/> <thead> <tr align="center"> <td><img src="img3.jpg" alt="" width="200" height="280"></td> <td colspan="4"><center><h4>write your name here - level 4</h4> </td> </tr> </thead> <tr align="center"> <td>1</td> <td>Web Design</td> <td bgcolor="#C0C0C0" >Off</td> <td colspan="2">management</td> </tr> <tr align="center"> <td>2</td> <td>management</td> <td bgcolor="#C0C0C0" colspan="3">Off</td> </tr> <tr align="center"> <td>3</td> <td bgcolor="#C0C0C0">Off</td> <td >management</td> <td colspan="3">management</td> </tr> <tr align="center"> <td>4</td> <td>Web Design</td> <td>management</td> <td>math</td> <td bgcolor="#C0C0C0">Off</td> </tr> <tr align="center"> <td>5</td> <td bgcolor="#C0C0C0" colspan="4">Off</td> </tr> </table> 

<a href="index.html">Go Back</a>  </center> </body> </html>

但是问题在于,代码在IE上工作正常,但在Firefox和Chrome上不工作。我试图清除缓存,但没有任何帮助。

其次,我在以下路径中有我的网站

C:UsersuserDesktopMy Website

和我的CSS文件在以下路径中

C:UsersuserDesktopMy Websitestyles

,我无法在此子文件夹中链接CSS文件

我尝试了以下代码

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

但不工作。

替换

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

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

您尚未告诉您的HTML文件mystyles.css文件在styles文件夹中。

fyi ..

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

将是C:UsersuserDesktopmystles.css

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

将是C:UsersuserDesktopstylesmystles.css

最新更新