In the root of my domain i have the CSS file style.css
and the masterpage file site.master
.
The link to the CSS file within the site.master is
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
The problem is that webpages contained within subdirectories do not inherit the CSS file.
What am i doing wrong here?
If i copy the style.css
file to the subdirectories everything works like a charm...
UPDATE: If i change the path to /style.css
or to ~/style.css
the style is Not applied also to the webpages within the root folder.