I have a simple html page as follow:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>test title</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<span class="test">Test</span>
</body>
</html>
and the style.css is follow:
.test{
color:yellow;
}
I suspect that the output be a yellow test, but it is a black one.
If I use this link:
http://url/style.css
I can see the content of CSS so I believe the client can read it.
I am using thttpd as web server on an embedded system.
screen capture of what IE developer shows:
which shows that both html and css are getting by IE.