Forum

> > Off Topic > Brauche Hilfe mit CSS-Problem
Forums overviewOff Topic overviewLog in to reply

German Brauche Hilfe mit CSS-Problem

6 replies
To the start Previous 1 Next To the start

old Brauche Hilfe mit CSS-Problem

Kayren
User Off Offline

Quote
Hallo Leute, ich habe da ein Problem mit das folgende Skript:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<style type="text/css">
a:visited{
	color: #FFFFFF;
	text-decoration: none;
}
a:hover{
	color: #444499;
	text-decoration: none;
}
a:link{
	color: #FFFFFF;
	text-decoration: none;
}
</style>
Obwohl a:hover für alle Links stehen, auf denen der Kursor gerichtet wird, funktioniert das allerdings nur bei einem Link (immer nur der Erste). Was mache ich falsch und wie kann ich den Fehler beheben?

old Re: Brauche Hilfe mit CSS-Problem

Kayren
User Off Offline

Quote
Dann klappt gar nix mehr. Die Seite ist in einem Frame und sieht im Ganzen so aus:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<head>
<style type="text/css">
a:visited{
	color: #FFFFFF;
	text-decoration: none;
}
a:hover{
	color: #444499;
	text-decoration: none;
}
a:link{
	color: #FFFFFF;
	text-decoration: none;
}
</style>
</head>
<body background="../../img/links1.jpg">
<a href="../frame/main.htm" target="fhaupt">Hauptseite</a>
<a href="../frame/about.htm" target="fhaupt">Über Stranded 2</a>
<a href="../frame/modd.htm" target="fhaupt">Das Modden</a>
<a href="main.htm" target="fhaupt"></a>
<a href="main.htm" target="fhaupt"></a>
</body>
</html>

old Re: Brauche Hilfe mit CSS-Problem

The Oracle File
User Off Offline

Quote
Hmm, auf jeden fall sollte bei body das auch mit CSS gelöst werden, also <body style='background-image:url("urladresse")'>

und Frames würde ich für das Layout auch nicht verwenden.

old Re: Brauche Hilfe mit CSS-Problem

Kayren
User Off Offline

Quote
Unten geschrieben und es klappt, thx Stealth! Oracle File, Frames müssen bei unseren Aufgaben leider benutzt werden, ich würde auch selber lieber verschachtelte Tabellen benutzen...

old Re: Brauche Hilfe mit CSS-Problem

Nova
User Off Offline

Quote
Quote
Denke daran :active und :hover nach :link und :visited zu definieren, da sie sonst die Eigenschaften von :visited übernehmen und die eigene Definition ignorieren. Dies ist kein Browser-Bug, sondern eine Festlegung in CSS.

Anders gesagt: Stealth hat recht, als Reihenfolge ist :link, :visited, :active und :hover eine gute Idee.


Und ob verschachtelte Tabellen besser sind als Frames wage ich zu bezweifeln...
To the start Previous 1 Next To the start
Log in to replyOff Topic overviewForums overview