Style sheet question

Z

Zach

Could someone please tell me why the style sheet has no effect?

Zach.

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"
Inherits="_Default" %>
<!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 runat="server">
<title>Test</title>
<link href="Style.css" rel="stylesheet" type="text/css" />
</head>
<body >
<form id="form1" runat="server">
<div>
<h1>This is a test page</h1>
</div>
</form>
</body>
</html>

<!---
The style sheet (Style.css)

body
{
background-color:Yellow;
}
--->
 
Z

Zach

Arne Vajhøj said:
You code works fine here.

Arne

I couldn't find out what was going wrong in the actual code I was writing.
Then I gave up using a separate style sheet and put the styles in
<style>...</style>
and no probem, so I took the easy way out. The application has been
uploaded and is running OK.

Thanks,
Zach,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top