Inline CSS works, but when I link it doesn't.
It happned in Firefox 3.something and in IE8.
template1.html
<html>
<head>
<title>title here</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="keywords" content="..." />
<meta name="description" content="..." />
<link ref="stylesheet" href="body.css" type="text/css" />
<style type="text/css">
/* Here it works
body {
background-color: blue;
}
*/
</style>
</head>
<body>
<div id="container">
</div>
</body>
</html>
body.css
body {
background-color: blue;
}