Is it possible to link multiple stylesheets to a single web page? I
have an overall stylesheet for my entire site, but there are a few pages
with a minor differences. I originally had these as inline styles, but
I would like to move them to external stylesheets, if possible.
I did some Google searches, and I found links that seemed to suggest
that multiple stylesheets could be linked to a single page, but didn't
give the details as how to do it.
I have tried code similar to:
<link rel="stylesheet " type="text/css" href="general.c ss" />
<link rel="stylesheet " type="text/css" href="specific. css" />
But the styles of the second sheet were not applied.
Thanks in advance,
Don
have an overall stylesheet for my entire site, but there are a few pages
with a minor differences. I originally had these as inline styles, but
I would like to move them to external stylesheets, if possible.
I did some Google searches, and I found links that seemed to suggest
that multiple stylesheets could be linked to a single page, but didn't
give the details as how to do it.
I have tried code similar to:
<link rel="stylesheet " type="text/css" href="general.c ss" />
<link rel="stylesheet " type="text/css" href="specific. css" />
But the styles of the second sheet were not applied.
Thanks in advance,
Don
Comment