Microsoft Word error during HTML import

Since I have to use Microsoft Word 2008 for Mac I figured out some issue: During opening a clean XHTML file with external CSS declarations Word can find these CSS files only in the same directory. I tried serveral ways to declare the href tag, but only the last one works…

<link href="../style.css" rel="stylesheet" type="text/css" />
<link href="./../style.css" rel="stylesheet" type="text/css" />
<link href="..\style.css" rel="stylesheet" type="text/css" />
<link href="style.css" rel="stylesheet" type="text/css" />

Maybe there is a solution? I can’t figure it out.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.