Greetings. I want to localize a style definition to a portion of an
HTML document, but use an external stylesheet. It seems that I can
only do
<style><!-- @import url(styles/my_style.css);--></style>
and <link rel=stylesheet href=styles/my_style.css type=text/css>
in the header, which applies to the entire HTML document and is NOT
what I want to do.
This does not seem to work:
<span style = @import url('styles/my_style.css');>
... some ...
... HTML ...
</span>
Nor does this:
<span>
<!-- @import url('styles/my_style.css'); -->
... some ...
... HTML ...
</span>
How do I "import" an external stylesheet at the inline or block level?
Thx!