Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
.nav a:link {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
color: #663300;
text-decoration:none;
}
.nav a:visited {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
color: #663300;
text-decoration:none;
}
.nav a:hover {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
color: #000000;
text-decoration:underline;
}
a.nav {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
color: #663300;
text-decoration:none;
}
a.nav:link {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
color: #663300;
text-decoration:none;
}
a.nav:visited {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
color: #663300;
text-decoration:none;
}
a.nav:hover {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
color: #000000;
text-decoration:underline;
}
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
<title>Test</title>
<style type="text/css">
<!--
body {
font-family: Tahoma,Verdana,Arial,sans-serif,Geneva;
font-size: 12px;
color: #cccccc;
background-color:#003366
}
a:link, a:visited {
color: white;
text-decoration: none;
}
a:hover, a:active {
color: #ff3300;
text-decoration: none;
}
.text2 a:link, .text2 a:visited {
color: blue;
text-decoration: none;
}
.text2 a:hover, .text2 a:active { color: green; }
a:link .text3, a:visited .text3 {
color: red;
text-decoration: none;
}
a:hover .text3 , a:active .text3 { color: yellow; }
a.text4:link, a.text4:visited {
color: purple;
text-decoration: none;
}
a.text4:hover, a.text4:active { color: black; }
-->
</style>
</head>
<body bgcolor="#ffffff">
<div class="text1">Dies ist ein Text mit einem <a href="#">Link</a></div>
<div class="text2">Dies ist auch ein Text, auch mit einem <a href="#">Link</a>. Diesmal aber in einem Div mit anderer Klasse.</div>
<div class="text3">Dies ist auch ein Text, auch mit einem <a href="#">Link</a>. Diesmal aber in einem Div mit anderer Klasse.</div>
<div class="text4">Dies ist auch ein Text, auch mit einem <a href="#">Link</a>. Diesmal aber in einem Div mit anderer Klasse.</div>
</body>
</html>
Naja, so kann man das nicht unbedingt sagen, weil der IE mitunter auch definitiv falschen CSS Code interpretiert. Ich würde auch zu .nav a:hover neigen, da hover die Pseudoklasse des a-Elements ist.Moritz123 hat gesagt.:Aber an der CSS kann es gar nicht liegen, sonst würde Sie ja generell nicht interpretiert werden. Das ist imho aber nicht der Fall.
Hümm? I don’t get it…Ich würde auch zu .nav a:hover neigen, da hover die Pseudoklasse des a-Elements ist.
a.nav {
...
}
.nav a:hover {
...
}