Hmm - how do you reference a remote .css inline?
Well, the short answer is (i think): you can't. Early on in my search for the answer, I ran across this article on w3schools stating that you can either:
-
create your stylesheet explicitly in the <head> element of the page (<head><style>blar blar blar...)
-
reference a common stylesheet in the <head> element of the page (<head><link href="style.css" blar blar blar...)
-
inline the style qualities on the elements in question (<p style="background:red;">this isn't so hot...</p>)
Well, I thought that I'd fiddle around anyways to just see what I could find and got all excited when I saw the 'src' sub attribute of the style property on a div tag:
<
div style="src:url(StyleSheet.css)">
Unfortunately that is only for the url of the font to download. :( I was really hoping to avoid inline for the scenario I need to implement but I might just have to. Any help would be appreciated.