Autor Beitrag
Sebi2020
Hält's aus hier
Beiträge: 6

Win XP
Visual Basic 6 Prof., HTML, anf. PHP
BeitragVerfasst: Do 20.07.06 10:56 
Ich frage mich wie man es hinbekommt das die Hyperlinks sobald man draufzeigt unterstrichen werden. Und wenn man nicht draufzeigt das sie nicht unterstrichen werden.

Bitte helft mir!!!

Moderiert von user profile iconTino: Titel erweitert
r2c2
ontopic starontopic starontopic starontopic starofftopic starofftopic starofftopic starofftopic star
Beiträge: 324
Erhaltene Danke: 2

Linux

BeitragVerfasst: Do 20.07.06 11:00 
So:
ausblenden Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
a:link {
 text-decoration:none;
  ...
}
a:hover {
  text-decoration:underline;
  ...
}


BTW: Ein Topic pro Frage reicht...

mfg

Christian

_________________
Kaum macht man's richtig, schon klappts!
Sebi2020 Threadstarter
Hält's aus hier
Beiträge: 6

Win XP
Visual Basic 6 Prof., HTML, anf. PHP
BeitragVerfasst: Do 20.07.06 13:03 
Titel: Bereich
Gut, in welchen bereich gehört der Quelltext, also in welchen Tag?, das verstehe ich nicht?
Marco D.
ontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic star
Beiträge: 2750

Windows Vista
Delphi 7, Delphi 2005 PE, PHP 4 + 5 (Notepad++), Java (Eclipse), XML, XML Schema, ABAP, ABAP OO
BeitragVerfasst: Do 20.07.06 13:08 
Du schreibst das innerhalb des Style-Tags im Head:
ausblenden Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
<head>
  <style>
  a:link {
   text-decoration:none;
    ...
  }
  a:hover {
  text-decoration:underline;
    ...
  }
  </style>
</head>

_________________
Pascal keeps your hand tied. C gives you enough rope to hang yourself. C++ gives you enough rope to shoot yourself in the foot