Announcement

Collapse
No announcement yet.

XML XSLT Button-Color

Collapse
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • XML XSLT Button-Color

    Hallo, und scho wieder ein Prob:

    Es geht noch mal um die buttons
    Mit dem Verlinken geht jetzt optimal, wie kann ich aber die Farbe eies Buttons verändern, wenn die Mouse drüber ist?

    in etwa:

    < button onclick="location.href='...'" onmouseover="????????" > <br>
    .... <br>
    < /button >

    hab da scho alles mögliche versucht, bin aber zu noch keinem Ergebnis gelangt. Die Beispiele aus dem Netz über HTML funktionieren hier nicht.

    MFG
    Lokutusvb

  • #2
    Hi,
    meine Buttons schauen so aus.

    Vielleicht hilft Dir das weiter:

    &lt;button&gt;

    ...

    &lt;span style="font-weight: bold; font-size: small; color: blue; font-family: arial; text-decoration: none"&gt;

    ...

    &lt;/button&gt;

    so long
    C

    Comment


    • #3
      Hab die Lösung gefunden.
      Trotzdem Danke.

      für all solche die es auch mal benötigen: <br>
      &lt;button onclick="location.href='...'" onmouseover='this.style.cursor='...'; this.style.backgroundColor='...'" onmouseout="this.style.backgroundColor='...'" style="background:..." &gt; <br>
      ... <br>
      &lt;/button&gt

      Comment

      Working...
      X