Vous n’êtes pas connecté.
Bonjour, visiteur, bienvenue sur les forums Aqua Computer Forum. Si c’est votre première visite, nous vous invitons à consulter l’Aide. Elle vous expliquera le fonctionnement de cette page. Pour avoir accès à toutes les fonctionnalités, vous devez vous inscrire. Pour cela, veuillez utiliser le formulaire d’enregistrement, ou bien lisez plus d’informations sur la procédure d’enregistrement. Si vous êtes déjà enregistré, veuillez vous connecter.
TrOuble
God





|
|
Code source |
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 26 27 28 29 30 31 32 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><head> <link rel="stylesheet" type="text/css" href="main.css"> <title>Fahrschule /¦\ Baumgarten</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <div align="center"> <table width="798" border="0" cellpadding="0" cellspacing="0" background="images/mittel.jpg"> <tr> <td colspan="2"><img src="images/header.jpg" alt="" width="798" height="234"></td> </tr> <tr> <td width="200"><div align="center"> <?php include "inc/links.php"; ?> </div></td> <td width="598"><div align="center"> <?php include "inc/include.php"; ?> </div></td> </tr> <tr> <td colspan="2"><img src="images/footer.jpg" alt="" width="798" height="45"></td> </tr> </table> </div> </body> <!-- Grafik & Coding von Raymond Schreiber aka TrOuble --> <!-- URL: http://www.troubledesynz.de/ --> |


|
|
Code source |
1 2 3 4 5 6 |
<div id="nav"> <a href="..." id="rundgang"><span>Rundgang</span></a><br /> <a href="..." id="fahrlehrer"><span>Fahrlehrer</span></a><br /> <a href="..." id="fahrzeuge"><span>Fahrzeuge</span></a><br /> ... </div> |
|
|
Code source |
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 26 27 28 |
/* text bei css-fähigen browsern ausblenden */
#nav a span {
display: none;
}
/* bildgröße */
#nav a {
display: block; /* <------------- WICHTIG */
width: 150px;
height: 30px;
}
/* bilder definieren */
#rundgang {
background: url(images/rollover/rundgang.jpg) no-repeat;
}
#fahrlehrer {
background: url(images/rollover/fahrlehrer.jpg) no-repeat;
}
#fahrzeuge {
background: url(images/rollover/fahrzeuge.jpg) no-repeat;
}
...
/* rahmen als hover-effekt */
#nav a:hover {
border: 1px solid #000000;
}
|
bei verschachtelten menüs, die wiederum ankern enthalten, klappt das ganze entsprechend nicht mehr, weil links verschachteln nicht drin ist. -