2 externe css für eine xsl -Datei
Billi
- css
0 Kai Lahmann0 Thomas Meinike0 billi
Hai, Wer kann mir helfen?
<html>
<head>
<title/>
<link rel="stylesheet" type="text/css" href="../css-stylesheets/scripte/datei1.css"/>
<link rel="stylesheet" type="text/css" href="../css-stylesheets/scripte/datei2.css"/>
</head>
<body>
Wie kann ich erreichen, das beide css-Dateien benutzt werden?
Gruss billi
hi
<link rel="stylesheet" type="text/css" href="../css-stylesheets/scripte/datei1.css"/>
<link rel="stylesheet" type="text/css" href="../css-stylesheets/scripte/datei2.css"/>
theorstisch sollten beide genutzt werden so (nach HTML4 Spec..)
Grüße aus Bleckede
Kai
Hallo,
theorstisch sollten beide genutzt werden so (nach HTML4 Spec..)
Prinzipiell schon und IE und Mozilla machen das auch beim lokalen Transformieren, aber bei einer Server-seitigen Anwendung hatte ich das Problem auch schon und mittels @import ließ es sich umgehen.
MfG, Thomas
Hallo,
<link rel="stylesheet" type="text/css" href="../css-stylesheets/scripte/datei1.css"/>
<link rel="stylesheet" type="text/css" href="../css-stylesheets/scripte/datei2.css"/>
So sollte es klappen:
<link rel="stylesheet" href="../css-stylesheets/scripte/datei1.css" type="text/css" />
<style type="text/css">
<![CDATA[
@import url(../css-stylesheets/scripte/datei2.css);
]]>
</style>
MfG, Thomas
Hallo,
<link rel="stylesheet" type="text/css" href="../css-stylesheets/scripte/datei1.css"/>
<link rel="stylesheet" type="text/css" href="../css-stylesheets/scripte/datei2.css"/>
So sollte es klappen:
<link rel="stylesheet" href="../css-stylesheets/scripte/datei1.css" type="text/css" />
<style type="text/css">
<![CDATA[
@import url(../css-stylesheets/scripte/datei2.css);
]]>
</style>
MfG, Thomas
Jo, funktionuppelt. Danke!
mfg billi