F
farseer
Hello,
i have the following stylesheet named Master.css with content as
follows:
body
{
font-family: Tahoma,sans-serif;
font-size: 150%;
background-color:Yellow;
}
When i include this in my master page as such:
<head runat="server">
<link rel="StyleSheet" href="Master.css" type="text/css">
</head>
I do not see the styles being effected on my master page. However, if
i were to directly specify the styling in the master page it self using
the html below, it does. Why does one work and not the other.
<STYLE TYPE="text/css" MEDIA=screen>
body
{
font-family: Tahoma,sans-serif;
font-size: 150%;
background-color:Red;
}
</STYLE>
i have the following stylesheet named Master.css with content as
follows:
body
{
font-family: Tahoma,sans-serif;
font-size: 150%;
background-color:Yellow;
}
When i include this in my master page as such:
<head runat="server">
<link rel="StyleSheet" href="Master.css" type="text/css">
</head>
I do not see the styles being effected on my master page. However, if
i were to directly specify the styling in the master page it self using
the html below, it does. Why does one work and not the other.
<STYLE TYPE="text/css" MEDIA=screen>
body
{
font-family: Tahoma,sans-serif;
font-size: 150%;
background-color:Red;
}
</STYLE>