Hjælp til Css Kan bare ikke finde fejlen.
Hej......Sidder lige her med en simpel side, og kan bare ikke finde den fejl der driller mig.
Min baggrund bliver ved med at være HVID, den skulle være Blå, alt andet jeg retter i style.css virker.... ??
Index.php:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>index.php</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<center>
<table>
<tr>
<td>Top</td>
</tr>
<tr>
<td><a href="main.php" target="main">Main</a> <a href="link.php" target="main">link</a></td>
</tr>
<tr>
<td id="m1"><IFRAME NAME="main" scrolling="yes" WIDTH="750" HEIGHT="450" SRC="main.php" frameborder="no"></IFRAME></td>
</tr>
<td>Bund</td>
</table>
</center>
</body>
</html>
Style.css:
<style type="text/css">
body {
background-color: #0080C0;
}
a:link {
color: black;
text-decoration:none;
}
a:visited {
color: black;
text-decoration:none;
}
a:hover {
color:black;
text-decoration:none;
font-style: italic;
}
table{
border-width: 0px;
border-style: solid;
border-color: gray;
}
td{
border-width: 1px;
border-style: solid;
border-color: gray;
color: #000000;
background-color: #FFFFFF;
}
#m1 {
border-width: 1px;
border-style: solid;
border-color: gray;
background-color: #FFFFFF;
}
</style>
