Billi: 2 externe css für eine xsl -Datei

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

  1. 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

    1. 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

  2. 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

    1. 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